mirror of
https://github.com/facebook/proxygen.git
synced 2025-08-19 00:21:58 +03:00
Reviewed By: saifhhasan Differential Revision: D7943135 fbshipit-source-id: 6b66b7b2ea6343b99ec113febca991eb840b1860
15 lines
372 B
Python
15 lines
372 B
Python
#!/usr/bin/env python
|
|
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'),
|
|
],
|
|
}
|