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
|
{ "local_execution":
{ "type": ["@", "rules", "CC/test", "test"]
, "name": ["local_execution"]
, "srcs": ["local_execution.test.cpp"]
, "private-deps":
[ ["@", "catch2", "", "catch2"]
, ["test", "catch-main"]
, ["src/buildtool/common", "artifact_factory"]
, ["src/buildtool/execution_api/local", "local"]
, ["test/utils", "local_hermeticity"]
]
, "stage": ["test", "buildtool", "execution_api", "local"]
}
, "local_api":
{ "type": ["@", "rules", "CC/test", "test"]
, "name": ["local_api"]
, "srcs": ["local_api.test.cpp"]
, "private-deps":
[ ["@", "catch2", "", "catch2"]
, ["test", "catch-main"]
, ["src/buildtool/execution_api/local", "local"]
, ["test/buildtool/execution_api/common", "api_test"]
, ["test/utils", "local_hermeticity"]
]
, "stage": ["test", "buildtool", "execution_api", "local"]
}
, "TESTS":
{ "type": "install"
, "tainted": ["test"]
, "deps": ["local_api", "local_execution"]
}
}
|