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
|
{ "task":
{ "type": ["@", "rules", "CC", "library"]
, "name": ["task"]
, "hdrs": ["task.hpp"]
, "stage": ["src", "buildtool", "multithreading"]
, "private-ldflags":
["-pthread", "-Wl,--whole-archive,-lpthread,--no-whole-archive"]
}
, "notification_queue":
{ "type": ["@", "rules", "CC", "library"]
, "name": ["notification_queue"]
, "hdrs": ["notification_queue.hpp"]
, "deps": ["task", ["src/utils/cpp", "atomic"], ["@", "gsl", "", "gsl"]]
, "stage": ["src", "buildtool", "multithreading"]
}
, "task_system":
{ "type": ["@", "rules", "CC", "library"]
, "name": ["task_system"]
, "hdrs": ["task_system.hpp"]
, "srcs": ["task_system.cpp"]
, "deps": ["notification_queue", ["@", "gsl", "", "gsl"]]
, "stage": ["src", "buildtool", "multithreading"]
, "private-deps": ["task"]
}
, "async_map_node":
{ "type": ["@", "rules", "CC", "library"]
, "name": ["async_map_node"]
, "hdrs": ["async_map_node.hpp"]
, "deps":
["task", "task_system", ["src/utils/cpp", "gsl"], ["@", "gsl", "", "gsl"]]
, "stage": ["src", "buildtool", "multithreading"]
}
, "async_map":
{ "type": ["@", "rules", "CC", "library"]
, "name": ["async_map"]
, "hdrs": ["async_map.hpp"]
, "deps": ["task", "task_system", "async_map_node", ["@", "gsl", "", "gsl"]]
, "stage": ["src", "buildtool", "multithreading"]
}
, "async_map_consumer":
{ "type": ["@", "rules", "CC", "library"]
, "name": ["async_map_consumer"]
, "hdrs": ["async_map_consumer.hpp"]
, "deps":
[ "task"
, "task_system"
, "async_map_node"
, "async_map"
, ["@", "gsl", "", "gsl"]
]
, "stage": ["src", "buildtool", "multithreading"]
}
, "atomic_value":
{ "type": ["@", "rules", "CC", "library"]
, "name": ["atomic_value"]
, "hdrs": ["atomic_value.hpp"]
, "deps": [["src/utils/cpp", "atomic"]]
, "stage": ["src", "buildtool", "multithreading"]
}
, "async_map_utils":
{ "type": ["@", "rules", "CC", "library"]
, "name": ["async_map_utils"]
, "hdrs": ["async_map_utils.hpp"]
, "deps":
[ "async_map_consumer"
, ["@", "fmt", "", "fmt"]
, ["src/buildtool/logging", "logging"]
]
, "stage": ["src", "buildtool", "multithreading"]
}
}
|