fork of https://github.com/oxigraph/rocksdb and https://github.com/facebook/rocksdb for nextgraph and oxigraph
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
895 B
46 lines
895 B
# TARGETS file for thrift/lib/cpp
|
|
|
|
cpp_library (
|
|
name = "thrift_exception",
|
|
srcs = [
|
|
"TApplicationException.cpp",
|
|
],
|
|
external_deps = [
|
|
('boost', None),
|
|
],
|
|
)
|
|
|
|
cpp_library (
|
|
name = "thrift",
|
|
srcs = [
|
|
"VirtualProfiling.cpp",
|
|
],
|
|
deps = [
|
|
"@/thrift/lib/cpp:thrift_base",
|
|
"@/thrift/lib/cpp/concurrency",
|
|
"@/thrift/lib/cpp/processor",
|
|
"@/thrift/lib/cpp/protocol",
|
|
"@/thrift/lib/cpp/server",
|
|
"@/thrift/lib/cpp/transport",
|
|
"@/thrift/lib/cpp:thrift_exception",
|
|
]
|
|
)
|
|
|
|
cpp_library (
|
|
name = "thrift_base",
|
|
srcs = [
|
|
"Thrift.cpp",
|
|
"EventHandlerBase.cpp",
|
|
],
|
|
external_deps = [
|
|
('boost', None),
|
|
],
|
|
)
|
|
|
|
cpp_library(
|
|
name = "reflection",
|
|
srcs = [],
|
|
deps = [
|
|
"@/thrift/lib/thrift:reflection-cpp",
|
|
],
|
|
)
|
|
|