summaryrefslogtreecommitdiff
path: root/src/other_tools/just_mr/TARGETS
blob: 299818d980d6e34f8a27ba39e5ef9fc99701254e (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
62
63
64
65
66
67
68
69
70
71
{ "just-mr":
  { "type": ["@", "rules", "CC", "binary"]
  , "arguments_config": ["BUILD_STATIC_BINARY"]
  , "name": ["just-mr"]
  , "srcs": ["main.cpp"]
  , "private-deps":
    [ ["src/buildtool/build_engine/expression", "expression"]
    , ["src/buildtool/logging", "logging"]
    , ["src/buildtool/logging", "log_level"]
    , ["src/buildtool/main", "version"]
    , "cli"
    , "exit_codes"
    , ["src/other_tools/ops_maps", "repo_fetch_map"]
    , ["src/other_tools/ops_maps", "git_update_map"]
    , ["src/other_tools/repo_map", "repos_to_setup_map"]
    , ["src/buildtool/progress_reporting", "base_progress_reporter"]
    , ["src/buildtool/progress_reporting", "progress"]
    , ["@", "json", "", "json"]
    , ["src/other_tools/just_mr/progress_reporting", "progress"]
    , ["src/other_tools/just_mr/progress_reporting", "statistics"]
    , ["src/other_tools/just_mr/progress_reporting", "progress_reporter"]
    ]
  , "stage": ["src", "other_tools", "just_mr"]
  , "private-ldflags":
    { "type": "if"
    , "cond": {"type": "var", "name": "BUILD_STATIC_BINARY"}
    , "then": ["-static"]
    }
  }
, "utils":
  { "type": ["@", "rules", "CC", "library"]
  , "name": ["utils"]
  , "hdrs": ["utils.hpp"]
  , "srcs": ["utils.cpp"]
  , "deps":
    [ ["src/utils/cpp", "tmp_dir"]
    , ["src/buildtool/storage", "config"]
    , ["src/buildtool/main", "constants"]
    , ["src/buildtool/build_engine/expression", "expression"]
    ]
  , "stage": ["src", "other_tools", "just_mr"]
  , "private-deps":
    [ ["src/utils/cpp", "path"]
    , ["src/buildtool/execution_api/local", "local"]
    , ["src/buildtool/file_system", "file_storage"]
    ]
  }
, "exit_codes":
  { "type": ["@", "rules", "CC", "library"]
  , "name": ["exit_codes"]
  , "hdrs": ["exit_codes.hpp"]
  , "stage": ["src", "other_tools", "just_mr"]
  }
, "cli":
  { "type": ["@", "rules", "CC", "library"]
  , "name": ["cli"]
  , "hdrs": ["cli.hpp"]
  , "deps":
    [ ["@", "cli11", "", "cli11"]
    , ["@", "fmt", "", "fmt"]
    , ["@", "gsl-lite", "", "gsl-lite"]
    , ["@", "json", "", "json"]
    , ["src/buildtool/common", "clidefaults"]
    , ["src/buildtool/execution_api/local", "config"]
    , ["src/other_tools/just_mr", "utils"]
    , ["src/buildtool/logging", "log_level"]
    ]
  , "stage": ["src", "other_tools", "just_mr"]
  , "private-deps": [["src/buildtool/logging", "logging"]]
  }
}