mirror of
https://github.com/facebook/proxygen.git
synced 2025-08-10 05:22:59 +03:00
Summary: The future is now. Reviewed By: xavierd Differential Revision: D33714537 fbshipit-source-id: 8d282bbe7391c4b72b70dab54a5c252060fba457
19 lines
451 B
Python
19 lines
451 B
Python
#!/usr/bin/env python
|
|
# Copyright (c) Facebook, Inc. and its affiliates.
|
|
|
|
import specs.fizz as fizz
|
|
import specs.fmt as fmt
|
|
import specs.folly as folly
|
|
import specs.sodium as sodium
|
|
import specs.wangle as wangle
|
|
import specs.zstd as zstd
|
|
|
|
|
|
def fbcode_builder_spec(builder):
|
|
return {
|
|
"depends_on": [fmt, folly, fizz, sodium, wangle, zstd],
|
|
"steps": [
|
|
builder.fb_github_cmake_install("fbthrift/thrift"),
|
|
],
|
|
}
|