sapling/eden/fs/journal/TARGETS
Philip Jameson 8604b8f5b0 Migrate TARGETS files from @/ to //
Summary:
This is a codemod to change from using @/ to // in basic cases.
- TARGETS files with lines starting with @/ (but excluding @/third-party:
- autodeps lines in source and TARGETS files ( (dep|manual)=@/ ), excluding @/third-party
- Targets in string macros

The only thing left of the old format should be @/third-party:foo:bar

drop-conflicts

Reviewed By: ttsugriy

Differential Revision: D6605465

fbshipit-source-id: ae50de2e1edb3f97c0b839d4021f38d77b7ab64c
2017-12-20 16:57:41 -08:00

15 lines
300 B
Plaintext

# @autodeps
cpp_library(
name = "journal",
srcs = glob(["*.cpp"]),
headers = glob(["*.h"]),
deps = [
"//eden/fs/model:model",
"//eden/fs/utils:path",
"//folly:function",
"//folly:synchronized",
"//folly/experimental/logging:logging",
],
)