summaryrefslogtreecommitdiff
path: root/src/buildtool/file_system/TARGETS
blob: 830a7947cb8d788ee6e276d1f0090e03a23dc6a4 (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
72
{ "object_type":
  { "type": ["@", "rules", "CC", "library"]
  , "name": ["object_type"]
  , "hdrs": ["object_type.hpp"]
  , "deps": [["@", "gsl-lite", "", "gsl-lite"]]
  , "stage": ["src", "buildtool", "file_system"]
  }
, "file_system_manager":
  { "type": ["@", "rules", "CC", "library"]
  , "name": ["file_system_manager"]
  , "hdrs": ["file_system_manager.hpp"]
  , "deps":
    [ "object_type"
    , ["src/buildtool/logging", "logging"]
    , ["src/buildtool/system", "system"]
    , ["@", "gsl-lite", "", "gsl-lite"]
    ]
  , "stage": ["src", "buildtool", "file_system"]
  }
, "jsonfs":
  { "type": ["@", "rules", "CC", "library"]
  , "name": ["jsonfs"]
  , "hdrs": ["jsonfs.hpp"]
  , "deps": ["object_type", "file_system_manager", ["src/utils/cpp", "json"]]
  , "stage": ["src", "buildtool", "file_system"]
  }
, "git_cas":
  { "type": ["@", "rules", "CC", "library"]
  , "name": ["git_cas"]
  , "hdrs": ["git_cas.hpp"]
  , "srcs": ["git_cas.cpp"]
  , "deps":
    [ "object_type"
    , "file_system_manager"
    , ["src/buildtool/logging", "logging"]
    , ["src/utils/cpp", "hex_string"]
    , ["@", "gsl-lite", "", "gsl-lite"]
    , ["", "libgit2"]
    ]
  , "stage": ["src", "buildtool", "file_system"]
  }
, "git_tree":
  { "type": ["@", "rules", "CC", "library"]
  , "name": ["git_tree"]
  , "hdrs": ["git_tree.hpp"]
  , "srcs": ["git_tree.cpp"]
  , "deps":
    [ "git_cas"
    , "object_type"
    , "file_system_manager"
    , ["src/buildtool/logging", "logging"]
    , ["src/buildtool/multithreading", "atomic_value"]
    , ["src/utils/cpp", "hex_string"]
    , ["@", "gsl-lite", "", "gsl-lite"]
    ]
  , "stage": ["src", "buildtool", "file_system"]
  }
, "file_root":
  { "type": ["@", "rules", "CC", "library"]
  , "name": ["file_root"]
  , "hdrs": ["file_root.hpp"]
  , "deps":
    [ "git_tree"
    , "file_system_manager"
    , ["src/buildtool/common", "artifact_description"]
    , ["src/buildtool/compatibility", "compatibility"]
    , ["@", "gsl-lite", "", "gsl-lite"]
    , ["@", "json", "", "json"]
    ]
  , "stage": ["src", "buildtool", "file_system"]
  }
}