summaryrefslogtreecommitdiff
path: root/src/other_tools/git_operations/TARGETS
blob: 8a135ecfbbbbdea68f93d627ddf6e6afdffa11ae (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
{ "git_ops_types":
  { "type": ["@", "rules", "CC", "library"]
  , "name": ["git_ops_types"]
  , "hdrs": ["git_ops_types.hpp"]
  , "deps":
    [["src/buildtool/file_system", "git_cas"], ["src/utils/cpp", "path"]]
  , "stage": ["src", "other_tools", "git_operations"]
  }
, "git_operations":
  { "type": ["@", "rules", "CC", "library"]
  , "name": ["git_operations"]
  , "hdrs": ["git_operations.hpp"]
  , "srcs": ["git_operations.cpp"]
  , "deps":
    [["src/buildtool/multithreading", "async_map_consumer"], "git_ops_types"]
  , "stage": ["src", "other_tools", "git_operations"]
  , "private-deps":
    [ ["src/buildtool/file_system", "file_system_manager"]
    , "git_repo_remote"
    , ["src/buildtool/logging", "logging"]
    ]
  }
, "git_repo_remote":
  { "type": ["@", "rules", "CC", "library"]
  , "name": ["git_repo_remote"]
  , "hdrs": ["git_repo_remote.hpp"]
  , "srcs": ["git_repo_remote.cpp"]
  , "deps": [["src/buildtool/file_system", "git_repo"]]
  , "stage": ["src", "other_tools", "git_operations"]
  , "private-deps":
    [ ["src/buildtool/logging", "logging"]
    , ["src/buildtool/file_system", "git_utils"]
    , ["@", "fmt", "", "fmt"]
    , ["", "libgit2"]
    , ["@", "json", "", "json"]
    , ["src/buildtool/system", "system_command"]
    , "git_config_settings"
    ]
  }
, "git_config_settings":
  { "type": ["@", "rules", "CC", "library"]
  , "name": ["git_config_settings"]
  , "hdrs": ["git_config_settings.hpp"]
  , "srcs": ["git_config_settings.cpp"]
  , "stage": ["src", "other_tools", "git_operations"]
  , "private-deps":
    [ ["src/other_tools/utils", "curl_url_handle"]
    , ["", "libgit2"]
    , ["@", "fmt", "", "fmt"]
    ]
  }
}