summaryrefslogtreecommitdiff
path: root/tests/test_cases/deps/chain/TARGETS
blob: 974df61ad1d466daefd2cf9e09e9e617c446a4db (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
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"]}
}