mirror of
https://github.com/facebook/proxygen.git
synced 2025-08-19 00:21:58 +03:00
Reviewed By: simpkins Differential Revision: D12990230 fbshipit-source-id: 58d82299a8fe6aed75115008fe5dfb0f46d847c6
16 lines
423 B
Python
16 lines
423 B
Python
#!/usr/bin/env python
|
|
# Copyright (c) Facebook, Inc. and its affiliates.
|
|
from __future__ import absolute_import
|
|
from __future__ import division
|
|
from __future__ import print_function
|
|
from __future__ import unicode_literals
|
|
|
|
|
|
def fbcode_builder_spec(builder):
|
|
return {
|
|
'steps': [
|
|
builder.github_project_workdir('google/re2', 'build'),
|
|
builder.cmake_install('google/re2'),
|
|
],
|
|
}
|