sapling/eden/fs/config/TARGETS
Christopher Dykes ea9b3416c5 Ensure explicit dependency on boost_filesystem
Summary:
This is needed to unblock some other work on folly.

```
foundation/dependency_management/ensure-explicit-dependencies.sh -e '("boost", None, "boost_filesystem")' boost/filesystem.hpp"
```

Reviewed By: yfeldblum

Differential Revision: D6094896

fbshipit-source-id: 3d4f7b42fa54514cf8c055f5fc477c3a2463bb0a
2017-10-18 20:34:41 -07:00

25 lines
552 B
Plaintext

# @autodeps
cpp_library(
name = "config",
srcs = glob(["*.cpp"]),
headers = glob(["*.h"]),
deps = [
"@/eden/fs/model:model",
"@/eden/fs/utils:path",
"@/folly:dynamic",
"@/folly:file",
"@/folly:file_util",
"@/folly:json",
"@/folly:optional",
"@/folly:range",
"@/folly:string",
"@/folly/experimental:string_keyed_unordered_map",
"@/folly/io:iobuf",
],
external_deps = [
("boost", None, "boost_filesystem"),
"boost",
],
)