summaryrefslogtreecommitdiff
path: root/test/buildtool/graph_traverser/TARGETS
blob: cf47ff268bc3261dfb0ee732b332354bbbc9f28b (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
{ "graph_traverser_tests":
  { "type": ["@", "rules", "CC", "library"]
  , "name": ["graph_traverser_tests"]
  , "hdrs": ["graph_traverser.test.hpp"]
  , "deps":
    [ ["@", "catch2", "", "catch2"]
    , ["src/buildtool/common", "common"]
    , ["src/buildtool/file_system", "file_system_manager"]
    , ["src/buildtool/file_system", "jsonfs"]
    , ["src/buildtool/graph_traverser", "graph_traverser"]
    , ["test/utils", "test_env"]
    ]
  , "stage": ["test", "buildtool", "graph_traverser"]
  }
, "graph_traverser_local":
  { "type": ["@", "rules", "CC/test", "test"]
  , "name": ["graph_traverser_local"]
  , "srcs": ["graph_traverser_local.test.cpp"]
  , "data": ["test_data"]
  , "deps":
    [ "graph_traverser_tests"
    , ["@", "catch2", "", "catch2"]
    , ["test", "catch-main"]
    , ["test/utils", "local_hermeticity"]
    ]
  , "stage": ["test", "buildtool", "graph_traverser"]
  }
, "graph_traverser_remote":
  { "type": ["@", "rules", "CC/test", "test"]
  , "name": ["graph_traverser_remote"]
  , "srcs": ["graph_traverser_remote.test.cpp"]
  , "data": ["test_data"]
  , "deps":
    [ "graph_traverser_tests"
    , ["@", "catch2", "", "catch2"]
    , ["test/utils", "catch-main-remote-execution"]
    ]
  , "stage": ["test", "buildtool", "graph_traverser"]
  }
, "test_data":
  { "type": ["@", "rules", "data", "staged"]
  , "srcs": [["TREE", "test/buildtool/graph_traverser", "data"]]
  , "stage": ["test", "buildtool", "graph_traverser"]
  }
, "TESTS":
  { "type": "install"
  , "tainted": ["test"]
  , "deps": ["graph_traverser_local", "graph_traverser_remote"]
  }
}