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
|
{ "curl_usage_install":
{ "type": ["@", "rules", "CC", "binary"]
, "tainted": ["test"]
, "name": ["curl_usage_install"]
, "srcs": ["curl_usage.test.cpp"]
, "private-deps":
[ ["@", "catch2", "", "catch2"]
, ["", "catch-main"]
, ["@", "src", "src/other_tools/utils", "curl_context"]
, ["@", "src", "src/other_tools/utils", "curl_easy_handle"]
, ["@", "src", "src/buildtool/file_system", "file_system_manager"]
]
, "stage": ["test", "other_tools", "utils"]
}
, "curl_usage":
{ "type": ["@", "rules", "shell/test", "script"]
, "name": ["curl_usage"]
, "test": ["curl_usage_test.sh"]
, "deps": [["utils", "test_utils_install"], "curl_usage_install"]
}
, "curl_url":
{ "type": ["@", "rules", "CC/test", "test"]
, "name": ["curl_url"]
, "srcs": ["curl_url.test.cpp"]
, "private-deps":
[ ["@", "catch2", "", "catch2"]
, ["", "catch-main"]
, ["@", "src", "src/other_tools/utils", "curl_url_handle"]
]
, "stage": ["test", "other_tools", "utils"]
}
, "TESTS":
{ "type": ["@", "rules", "test", "suite"]
, "stage": ["utils"]
, "deps": ["curl_usage", "curl_url"]
}
}
|