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
|
{ "bundled-test":
{ "type": ["@", "rules", "shell/test", "script"]
, "name": ["bootstrap-test-bundled"]
, "test": ["test-bootstrap.sh"]
, "deps": [["", "bootstrap-src"], ["@", "just-distfiles", "", "distdir"]]
}
, "well_known_protos":
{ "type": ["@", "rules", "data", "staged"]
, "srcs": [["@", "protoc", "", "well_known_protos"]]
, "stage": ["proto"]
}
, "distro-bootstrap-deps":
{ "type": "stage-deps"
, "prefix": ["LOCALBASE"]
, "libs":
[ ["@", "cli11", "", "cli11"]
, ["@", "json", "", "json"]
, ["@", "fmt", "", "fmt"]
, ["@", "ssl", "", "ssl"]
, ["@", "grpc", "", "grpc++"]
, ["@", "grpc", "", "grpc++_codegen_proto"]
, ["@", "bazel_remote_apis", "", "remote_execution_proto"]
, ["@", "gsl-lite", "", "gsl-lite"]
, ["@", "protoc", "", "C++ runtime"]
, ["", "libgit2"]
]
, "bins":
[ ["@", "protoc", "", "protoc"]
, ["@", "grpc", "src/compiler", "grpc_cpp_plugin"]
]
, "protos":
[ ["@", "bazel_remote_apis", "", "remote_execution_proto"]
, ["@", "googleapis", "", "google_bytestream_proto"]
]
, "deps": ["well_known_protos"]
}
, "staged-sources":
{"type": "install", "dirs": [[["", "bootstrap-src"], "srcs/just"]]}
, "prebuilt-test":
{ "type": ["@", "rules", "shell/test", "script"]
, "name": ["bootstrap-test-prebuilt"]
, "test": ["test-bootstrap-prebuilt.sh"]
, "deps": ["distro-bootstrap-deps", "staged-sources"]
}
, "TESTS":
{ "type": "install"
, "tainted": ["test"]
, "deps": ["bundled-test", "prebuilt-test"]
}
}
|