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
|
{ "archive_ops":
{ "type": ["@", "rules", "CC", "library"]
, "name": ["archive_ops"]
, "hdrs": ["archive_ops.hpp"]
, "srcs": ["archive_ops.cpp"]
, "deps": [["@", "gsl", "", "gsl"]]
, "stage": ["src", "other_tools", "utils"]
, "private-deps":
[["src/buildtool/file_system", "file_system_manager"], ["", "libarchive"]]
}
, "curl_context":
{ "type": ["@", "rules", "CC", "library"]
, "name": ["curl_context"]
, "hdrs": ["curl_context.hpp"]
, "srcs": ["curl_context.cpp"]
, "stage": ["src", "other_tools", "utils"]
, "private-deps": [["src/buildtool/logging", "logging"], ["", "libcurl"]]
}
, "curl_easy_handle":
{ "type": ["@", "rules", "CC", "library"]
, "name": ["curl_easy_handle"]
, "hdrs": ["curl_easy_handle.hpp"]
, "srcs": ["curl_easy_handle.cpp"]
, "deps": ["curl_context", ["@", "gsl", "", "gsl"]]
, "stage": ["src", "other_tools", "utils"]
, "private-deps":
[ ["src/buildtool/logging", "logging"]
, ["src/buildtool/file_system", "file_system_manager"]
, ["", "libcurl"]
]
}
, "curl_url_handle":
{ "type": ["@", "rules", "CC", "library"]
, "name": ["curl_url_handle"]
, "hdrs": ["curl_url_handle.hpp"]
, "srcs": ["curl_url_handle.cpp"]
, "deps": ["curl_context", ["@", "gsl", "", "gsl"]]
, "stage": ["src", "other_tools", "utils"]
, "private-deps": [["src/buildtool/logging", "logging"], ["", "libcurl"]]
}
}
|