summaryrefslogtreecommitdiff
path: root/tests/test_cases/deps/chain/TARGETS
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_cases/deps/chain/TARGETS')
-rw-r--r--tests/test_cases/deps/chain/TARGETS38
1 files changed, 38 insertions, 0 deletions
diff --git a/tests/test_cases/deps/chain/TARGETS b/tests/test_cases/deps/chain/TARGETS
new file mode 100644
index 0000000..974df61
--- /dev/null
+++ b/tests/test_cases/deps/chain/TARGETS
@@ -0,0 +1,38 @@
+{ "foo":
+ { "type": ["@", "rules", "CC", "library"]
+ , "name": ["foo"]
+ , "shared": ["yes"]
+ , "hdrs": ["foo.hpp"]
+ , "srcs": ["foo.cpp"]
+ , "deps": ["bar"]
+ }
+, "bar":
+ { "type": ["@", "rules", "CC", "library"]
+ , "name": ["bar"]
+ , "shared": ["yes"]
+ , "hdrs": ["bar.hpp"]
+ , "srcs": ["bar.cpp"]
+ , "deps": ["baz"]
+ }
+, "baz":
+ { "type": ["@", "rules", "CC", "library"]
+ , "name": ["baz"]
+ , "hdrs": ["baz.hpp"]
+ , "srcs": ["baz.cpp"]
+ , "deps": ["qux"]
+ }
+, "qux":
+ { "type": ["@", "rules", "CC", "library"]
+ , "name": ["qux"]
+ , "hdrs": ["qux.hpp"]
+ , "srcs": ["qux.cpp"]
+ }
+, "main":
+ { "type": ["@", "rules", "CC", "binary"]
+ , "name": ["main"]
+ , "srcs": ["main.cpp"]
+ , "private-deps": ["foo", "qux"]
+ }
+, "main-with-deps":
+ {"type": ["@", "rules", "CC", "install-with-deps"], "targets": ["main"]}
+}