mirror of
https://github.com/facebook/proxygen.git
synced 2025-08-19 00:21:58 +03:00
Summary: Update cmake configurations + legocastle jobs in order to add fizz as a dependency to wangle Reviewed By: reanimus Differential Revision: D9337956 fbshipit-source-id: 40f25694c2b3fd8aa37d254bc63a664f4c8ee526
20 lines
493 B
Python
20 lines
493 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
|
|
|
|
import specs.folly as folly
|
|
import specs.fizz as fizz
|
|
import specs.sodium as sodium
|
|
import specs.wangle as wangle
|
|
|
|
|
|
def fbcode_builder_spec(builder):
|
|
return {
|
|
'depends_on': [folly, wangle, fizz, sodium],
|
|
'steps': [
|
|
builder.fb_github_autoconf_install('proxygen/proxygen'),
|
|
],
|
|
}
|