rocksdb/thrift/lib/cpp/protocol/neutronium/TARGETS
Dhruba Borthakur 80c663882a Create leveldb server via Thrift.
Summary:
First draft.
Unit tests pass.

Test Plan: unit tests attached

Reviewers: heyongqiang

Reviewed By: heyongqiang

Differential Revision: https://reviews.facebook.net/D3969
2012-07-07 09:42:39 -07:00

25 lines
404 B
Plaintext

# Copyright 2011 Facebook
# @author Tudor Bosman (tudorb@fb.com)
cpp_library(
name = "neutronium",
srcs = [
"Schema.cpp",
"Encoder.cpp",
"Decoder.cpp",
"InternTable.cpp",
],
thrift_srcs = {
"intern_table.thrift": [],
},
deps = [
"@/folly",
"@/folly/experimental/io",
"@/thrift/lib/cpp/protocol",
],
external_deps = [
("boost", None, "boost"),
],
)