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
72
73
74
75
76
77
78
79
|
{ "critical_git_ops_test_install":
{ "type": ["@", "rules", "CC", "binary"]
, "tainted": ["test"]
, "name": ["critical_git_ops_test"]
, "srcs": ["critical_git_ops.test.cpp"]
, "private-deps":
[ ["@", "catch2", "", "catch2"]
, ["", "catch-main"]
, ["@", "json", "", "json"]
, ["@", "src", "src/buildtool/file_system", "file_system_manager"]
, ["@", "src", "src/other_tools/ops_maps", "critical_git_op_map"]
, ["@", "src", "src/buildtool/execution_api/common", "common"]
, ["utils", "shell_quoting"]
]
, "stage": ["test", "other_tools", "git_operations"]
}
, "critical_git_ops_mp":
{ "type": ["@", "rules", "shell/test", "script"]
, "name": ["critical_git_ops_mp"]
, "test": ["critical_git_ops_mp.sh"]
, "deps":
[["buildtool/file_system", "test_data"], "critical_git_ops_test_install"]
}
, "git_repo_remote":
{ "type": ["@", "rules", "CC/test", "test"]
, "name": ["git_repo_remote"]
, "srcs": ["git_repo_remote.test.cpp"]
, "data": [["buildtool/file_system", "test_data"]]
, "private-deps":
[ ["@", "catch2", "", "catch2"]
, ["", "catch-main"]
, ["@", "json", "", "json"]
, ["@", "src", "src/buildtool/file_system", "file_system_manager"]
, ["@", "src", "src/other_tools/git_operations", "git_repo_remote"]
, ["@", "src", "src/utils/cpp", "atomic"]
, ["utils", "shell_quoting"]
]
, "stage": ["test", "other_tools", "git_operations"]
}
, "git_config_run":
{ "type": ["@", "rules", "CC", "binary"]
, "tainted": ["test"]
, "name": ["git_config_run_test"]
, "srcs": ["git_config_run.test.cpp"]
, "private-deps":
[ ["@", "src", "", "libgit2"]
, ["@", "src", "src/other_tools/git_operations", "git_config_settings"]
, ["@", "src", "src/buildtool/file_system", "git_utils"]
, ["@", "src", "src/buildtool/file_system", "git_context"]
, ["@", "src", "src/buildtool/logging", "logging"]
, ["utils", "log_config"]
]
, "stage": ["src"]
}
, "git_config_ssl":
{ "type": ["@", "rules", "shell/test", "script"]
, "tainted": ["test"]
, "name": ["git_config_ssl"]
, "test": ["git_config_ssl.sh"]
, "deps": ["git_config_run"]
}
, "git_config_proxy":
{ "type": ["@", "rules", "shell/test", "script"]
, "tainted": ["test"]
, "name": ["git_config_proxy"]
, "test": ["git_config_proxy.sh"]
, "deps": ["git_config_run"]
}
, "TESTS":
{ "type": "install"
, "tainted": ["test"]
, "deps":
[ "critical_git_ops_mp"
, "git_repo_remote"
, "git_config_ssl"
, "git_config_proxy"
]
}
}
|