summaryrefslogtreecommitdiff
path: root/tests/test_cases/deps/components/TARGETS
blob: 62a599ca2e3569d7fc2c2e838adba936a10e306a (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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{ "combined_static_lib":
  { "type": ["@", "rules", "CC", "library"]
  , "name": ["combstatic"]
  , "components": ["foo", "bar"]
  }
, "combined_shared_lib":
  { "type": ["@", "rules", "CC", "library"]
  , "name": ["combshared"]
  , "shared": [""]
  , "components": ["foo", "bar"]
  }
, "foo":
  { "type": ["@", "rules", "CC", "library"]
  , "name": ["foo"]
  , "hdrs": ["foo.hpp"]
  , "srcs": ["foo.cpp"]
  , "deps": ["foodep"]
  }
, "foodep":
  { "type": ["@", "rules", "CC", "library"]
  , "name": ["foodep"]
  , "hdrs": ["foodep.hpp"]
  , "srcs": ["foodep.cpp"]
  }
, "bar":
  { "type": ["@", "rules", "CC", "library"]
  , "name": ["bar"]
  , "hdrs": ["bar.hpp"]
  , "srcs": ["bar.cpp"]
  }
, "main":
  { "type": ["@", "rules", "CC", "binary"]
  , "name": ["main"]
  , "srcs": ["main.cpp"]
  , "private-deps": ["combined_static_lib"]
  }
, "main-shared":
  { "type": ["@", "rules", "CC", "binary"]
  , "name": ["main"]
  , "srcs": ["main.cpp"]
  , "private-deps": ["combined_shared_lib"]
  }
, "main-dynamic":
  { "type": ["@", "rules", "CC", "install-with-deps"]
  , "targets": ["main-shared"]
  }
, "installed_static":
  { "type": ["@", "rules", "CC", "install-with-deps"]
  , "targets": ["combined_static_lib"]
  }
, "installed_shared":
  { "type": ["@", "rules", "CC", "install-with-deps"]
  , "targets": ["combined_shared_lib"]
  }
}