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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
build / linux / unbundle / absl_container.gn [blame]
import("//build/config/linux/pkg_config.gni")
import("//build/shim_headers.gni")
pkg_config("system_absl_btree") {
packages = [ "absl_btree" ]
}
pkg_config("system_absl_fixed_array") {
packages = [ "absl_fixed_array" ]
}
pkg_config("system_absl_flat_hash_map") {
packages = [ "absl_flat_hash_map" ]
}
pkg_config("system_absl_flat_hash_set") {
packages = [ "absl_flat_hash_set" ]
}
pkg_config("system_absl_inlined_vector") {
packages = [ "absl_inlined_vector" ]
}
pkg_config("system_absl_node_hash_map") {
packages = [ "absl_node_hash_map" ]
}
pkg_config("system_absl_node_hash_set") {
packages = [ "absl_node_hash_set" ]
}
shim_headers("btree_shim") {
root_path = "."
prefix = "absl/container/"
headers = [
"btree_map.h",
"btree_set.h",
]
}
source_set("btree") {
deps = [ ":btree_shim" ]
public_configs = [ ":system_absl_btree" ]
}
shim_headers("fixed_array_shim") {
root_path = "."
prefix = "absl/container/"
headers = [ "fixed_array.h" ]
}
source_set("fixed_array") {
deps = [ ":fixed_array_shim" ]
public_configs = [ ":system_absl_fixed_array" ]
}
shim_headers("flat_hash_map_shim") {
root_path = "."
prefix = "absl/container/"
headers = [ "flat_hash_map.h" ]
}
source_set("flat_hash_map") {
deps = [ ":flat_hash_map_shim" ]
public_configs = [ ":system_absl_flat_hash_map" ]
}
shim_headers("flat_hash_set_shim") {
root_path = "."
prefix = "absl/container/"
headers = [ "flat_hash_set.h" ]
}
source_set("flat_hash_set") {
deps = [ ":flat_hash_set_shim" ]
public_configs = [ ":system_absl_flat_hash_set" ]
}
shim_headers("inlined_vector_shim") {
root_path = "."
prefix = "absl/container/"
headers = [ "inlined_vector.h" ]
}
source_set("inlined_vector") {
deps = [ ":inlined_vector_shim" ]
public_configs = [ ":system_absl_inlined_vector" ]
}
shim_headers("node_hash_map_shim") {
root_path = "."
prefix = "absl/container/"
headers = [ "node_hash_map.h" ]
}
source_set("node_hash_map") {
deps = [ ":node_hash_map_shim" ]
public_configs = [ ":system_absl_node_hash_map" ]
}
shim_headers("node_hash_set_shim") {
root_path = "."
prefix = "absl/container/"
headers = [ "node_hash_set.h" ]
}
source_set("node_hash_set") {
deps = [ ":node_hash_set_shim" ]
public_configs = [ ":system_absl_node_hash_set" ]
}
source_set("common_policy_traits_test") {
}
source_set("fixed_array_test") {
}
source_set("flat_hash_map_test") {
}
source_set("flat_hash_set_test") {
}
source_set("hash_function_defaults_test") {
}
source_set("inlined_vector_test") {
}
source_set("node_slot_policy_test") {
}
source_set("raw_hash_set_allocator_test") {
}
source_set("raw_hash_set_test") {
}
source_set("sample_element_size_test") {
}