mirror of
https://github.com/facebook/proxygen.git
synced 2025-08-17 13:21:04 +03:00
Reviewed By: simpkins Differential Revision: D12990230 fbshipit-source-id: 58d82299a8fe6aed75115008fe5dfb0f46d847c6
22 lines
663 B
Python
22 lines
663 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
|
|
|
|
import specs.folly as folly
|
|
import specs.fizz as fizz
|
|
import specs.sodium as sodium
|
|
|
|
|
|
def fbcode_builder_spec(builder):
|
|
# Projects that simply depend on Wangle need not spend time on tests.
|
|
builder.add_option('wangle/wangle/build:cmake_defines', {'BUILD_TESTS': 'OFF'})
|
|
return {
|
|
'depends_on': [folly, fizz, sodium],
|
|
'steps': [
|
|
builder.fb_github_cmake_install('wangle/wangle/build'),
|
|
],
|
|
}
|