summaryrefslogtreecommitdiff
path: root/tests/test_cases/deps/private/TARGETS
diff options
context:
space:
mode:
authorOliver Reiche <oliver.reiche@huawei.com>2022-12-09 15:24:55 +0100
committerOliver Reiche <oliver.reiche@huawei.com>2022-12-12 14:46:19 +0100
commit886c7b680928276d7f925d30fc206ca27d9a97d1 (patch)
tree4471690974cc15caad524274c88fff830bf2c127 /tests/test_cases/deps/private/TARGETS
parent6e10ee13df0b83511d7fe94bb755ac53f993c0ec (diff)
downloadrules-cc-886c7b680928276d7f925d30fc206ca27d9a97d1.tar.gz
Add tests and readme
Diffstat (limited to 'tests/test_cases/deps/private/TARGETS')
-rw-r--r--tests/test_cases/deps/private/TARGETS34
1 files changed, 34 insertions, 0 deletions
diff --git a/tests/test_cases/deps/private/TARGETS b/tests/test_cases/deps/private/TARGETS
new file mode 100644
index 0000000..582af60
--- /dev/null
+++ b/tests/test_cases/deps/private/TARGETS
@@ -0,0 +1,34 @@
+{ "foo":
+ { "type": ["@", "rules", "CC", "library"]
+ , "name": ["foo"]
+ , "hdrs": ["foo.hpp"]
+ , "srcs": ["foo.cpp"]
+ , "stage": ["foo"]
+ }
+, "bar":
+ { "type": ["@", "rules", "CC", "library"]
+ , "name": ["bar"]
+ , "hdrs": ["bar.hpp"]
+ , "srcs": ["bar.cpp"]
+ , "private-deps": ["foo"]
+ , "stage": ["bar"]
+ }
+, "main_includes_foo":
+ { "type": ["@", "rules", "CC", "binary"]
+ , "name": ["main"]
+ , "srcs": ["main_includes_foo.cpp"]
+ , "private-deps": ["bar"]
+ }
+, "main_links_foo":
+ { "type": ["@", "rules", "CC", "binary"]
+ , "name": ["main"]
+ , "srcs": ["main_links_foo.cpp"]
+ , "private-deps": ["bar"]
+ }
+, "main_links_bar_foo":
+ { "type": ["@", "rules", "CC", "binary"]
+ , "name": ["main"]
+ , "srcs": ["main_links_bar_foo.cpp"]
+ , "private-deps": ["bar"]
+ }
+}