summaryrefslogtreecommitdiff
path: root/src/other_tools/utils/TARGETS
blob: 207dfb76ff1e8e633f82a40a45a87994d32ac227 (plain)
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
{ "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"
    , ["src/buildtool/logging", "log_level"]
    , ["@", "gsl", "", "gsl"]
    ]
  , "stage": ["src", "other_tools", "utils"]
  , "private-deps":
    [ ["src/buildtool/file_system", "file_system_manager"]
    , ["src/buildtool/logging", "logging"]
    , ["", "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"]]
  }
, "content":
  { "type": ["@", "rules", "CC", "library"]
  , "name": ["content"]
  , "hdrs": ["content.hpp"]
  , "deps":
    [ "curl_easy_handle"
    , "curl_url_handle"
    , ["src/buildtool/common", "user_structs"]
    , ["src/buildtool/crypto", "hasher"]
    , ["src/buildtool/logging", "log_level"]
    , ["src/other_tools/just_mr", "mirrors"]
    ]
  , "stage": ["src", "other_tools", "utils"]
  }
, "parse_archive":
  { "type": ["@", "rules", "CC", "library"]
  , "name": ["parse_archive"]
  , "hdrs": ["parse_archive.hpp"]
  , "srcs": ["parse_archive.cpp"]
  , "deps":
    [ ["src/buildtool/build_engine/expression", "expression"]
    , ["src/other_tools/ops_maps", "content_cas_map"]
    ]
  , "private-deps": [["@", "fmt", "", "fmt"]]
  , "stage": ["src", "other_tools", "utils"]
  }
}