80c663882a
Summary: First draft. Unit tests pass. Test Plan: unit tests attached Reviewers: heyongqiang Reviewed By: heyongqiang Differential Revision: https://reviews.facebook.net/D3969
25 lines
404 B
Plaintext
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"),
|
|
],
|
|
)
|
|
|