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
68
69
70
71
|
{ "executor_api_tests":
{ "type": ["@", "rules", "CC", "library"]
, "name": ["executor_api_tests"]
, "hdrs": ["executor_api.test.hpp"]
, "stage": ["test", "buildtool", "execution_engine", "executor"]
}
, "executor":
{ "type": ["@", "rules", "CC/test", "test"]
, "name": ["executor"]
, "srcs": ["executor.test.cpp"]
, "private-deps":
[ ["src/buildtool/common", "artifact_factory"]
, ["src/buildtool/execution_api/common", "common"]
, ["src/buildtool/execution_engine/dag", "dag"]
, ["src/buildtool/execution_engine/executor", "executor"]
, ["test", "catch-main"]
, ["@", "catch2", "", "catch2"]
]
, "stage": ["test", "buildtool", "execution_engine", "executor"]
}
, "local":
{ "type": ["test/utils/remote_execution", "CC test"]
, "name": ["local"]
, "srcs": ["executor_api_local.test.cpp"]
, "data": ["test_data"]
, "private-deps":
[ "executor_api_tests"
, ["src/buildtool/common", "artifact_factory"]
, ["src/buildtool/execution_api/local", "local"]
, ["src/buildtool/execution_api/remote", "config"]
, ["src/buildtool/execution_engine/dag", "dag"]
, ["src/buildtool/execution_engine/executor", "executor"]
, ["test/utils", "catch-main-remote-execution"]
, ["test/utils", "local_hermeticity"]
, ["@", "catch2", "", "catch2"]
]
, "stage": ["test", "buildtool", "execution_engine", "executor"]
}
, "remote_bazel":
{ "type": ["test/utils/remote_execution", "CC test"]
, "name": ["remote_bazel"]
, "srcs": ["executor_api_remote_bazel.test.cpp"]
, "data": ["test_data"]
, "private-deps":
[ "executor_api_tests"
, ["src/buildtool/common", "artifact_factory"]
, ["src/buildtool/execution_api/remote", "bazel"]
, ["src/buildtool/execution_api/remote", "config"]
, ["src/buildtool/execution_engine/executor", "executor"]
, ["test/utils", "catch-main-remote-execution"]
, ["@", "catch2", "", "catch2"]
]
, "stage": ["test", "buildtool", "execution_engine", "executor"]
}
, "test_data":
{ "type": ["@", "rules", "data", "staged"]
, "srcs":
[ "data/greeter/greet.cpp"
, "data/greeter/greet.hpp"
, "data/greeter/greet_mod.cpp"
, "data/greeter/main.cpp"
, "data/hello_world/main.cpp"
]
, "stage": ["test", "buildtool", "execution_engine", "executor"]
}
, "TESTS":
{ "type": "install"
, "tainted": ["test"]
, "deps": ["executor", "local", "remote_bazel"]
}
}
|