sapling/eden/fs/fuse/TARGETS
Andrew Gallagher 03bdaff954 codemod: format TARGETS with buildifier [4/5] (D5092623)
Reviewed By: igorsugak

fbshipit-source-id: 277a9d2bdc1d7e3ff3075bfe2d7307502fd0a507
2017-06-01 17:52:40 -07:00

19 lines
462 B
Plaintext

include_defs("//eden/DEFS")
cpp_library(
name = "fusell",
srcs = glob(["*.cpp"]),
headers = glob(["*.h"]),
deps = ([
"@/eden/fs/fuse/privhelper:privhelper",
"@/eden/fs/utils:utils",
"@/folly:folly",
"@/folly:stats",
"@/folly:synchronized",
"@/wangle:wangle",
] + ["@/common/stats:threadlocal"]) if is_facebook_internal() else [],
external_deps = [
("fuse", None, "fuse"),
],
)