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: D6605560

fbshipit-source-id: 17d3a196b91045f0db5ee2a5afad467b6344be0b
This commit is contained in:
Philip Jameson 2017-12-20 18:26:38 -08:00 committed by Facebook Github Bot
parent 8604b8f5b0
commit f18128537f

View File

@ -3,6 +3,6 @@ cpp_library(
srcs = glob(["*.cpp"]),
headers = glob(["*.h"]),
deps = [
"@/common/fb303/if:fb303-cpp2",
"//common/fb303/if:fb303-cpp2",
],
)