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
|
{ "rc_merge":
{ "type": ["@", "rules", "CC/test", "test"]
, "name": ["rc_merge"]
, "srcs": ["rc_merge.test.cpp"]
, "private-deps":
[ ["@", "catch2", "", "catch2"]
, ["", "catch-main"]
, ["@", "src", "src/buildtool/build_engine/expression", "expression"]
, ["@", "src", "src/other_tools/just_mr", "rc_merge"]
]
, "stage": ["test", "other_tools", "just_mr"]
}
, "mirrors":
{ "type": ["@", "rules", "CC/test", "test"]
, "name": ["mirrors"]
, "srcs": ["mirrors.test.cpp"]
, "private-deps":
[ ["@", "catch2", "", "catch2"]
, ["", "catch-main"]
, ["@", "src", "src/other_tools/just_mr", "mirrors"]
]
, "stage": ["test", "other_tools", "just_mr"]
}
, "TESTS":
{ "type": ["@", "rules", "test", "suite"]
, "stage": ["just_mr"]
, "deps": ["rc_merge", "mirrors"]
}
}
|