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
56
57
58
59
60
61
62
63
64
65
66
67
|
{ "baz":
{ "type": ["@", "rules", "CC", "library"]
, "name": ["baz"]
, "hdrs": ["baz.hpp"]
, "srcs": ["baz.cpp"]
, "stage": ["baz"]
}
, "foo":
{ "type": ["@", "rules", "CC", "library"]
, "name": ["foo"]
, "hdrs": ["foo.hpp"]
, "private-hdrs": ["qux.hpp"]
, "srcs": ["foo.cpp"]
, "private-deps": ["baz"]
, "stage": ["foo"]
}
, "bar":
{ "type": ["@", "rules", "CC", "library"]
, "name": ["bar"]
, "hdrs": ["bar.hpp"]
, "srcs": ["bar.cpp"]
, "deps": ["foo"]
, "stage": ["bar"]
}
, "main":
{ "type": ["@", "rules", "CC", "binary"]
, "name": ["main"]
, "srcs": ["main.cpp"]
, "private-deps": ["bar"]
}
, "install_bar_release":
{"type": ["@", "rules", "CC", "install-with-deps"], "targets": ["bar"]}
, "install_main_release":
{"type": ["@", "rules", "CC", "install-with-deps"], "targets": ["main"]}
, "bar debug":
{ "type": "configure"
, "target": "bar"
, "config":
{ "type": "'"
, "$1": {"DEBUG": {"USE_DEBUG_FISSION": false}, "ADD_CXXFLAGS": ["-g"]}
}
}
, "main debug":
{ "type": "configure"
, "target": "main"
, "config":
{ "type": "'"
, "$1": {"DEBUG": {"USE_DEBUG_FISSION": false}, "ADD_CXXFLAGS": ["-g"]}
}
}
, "install_bar_debug":
{"type": ["@", "rules", "CC", "install-with-deps"], "targets": ["bar debug"]}
, "install_main_debug":
{ "type": ["@", "rules", "CC", "install-with-deps"]
, "targets": ["main debug"]
}
, "install_bar_debug_slim":
{ "type": ["@", "rules", "CC", "install-with-deps"]
, "skip-debug-stage": ["yes"]
, "targets": ["bar debug"]
}
, "install_main_debug_slim":
{ "type": ["@", "rules", "CC", "install-with-deps"]
, "skip-debug-stage": ["yes"]
, "targets": ["main debug"]
}
}
|