1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
build / linux / unbundle / absl_algorithm.gn [blame]
import("//build/config/linux/pkg_config.gni")
import("//build/shim_headers.gni")
pkg_config("system_absl_algorithm_container") {
packages = [ "absl_algorithm_container" ]
}
shim_headers("container_shim") {
root_path = "."
prefix = "absl/algorithm/"
headers = [ "container.h" ]
}
source_set("container") {
deps = [ ":container_shim" ]
public_configs = [ ":system_absl_algorithm_container" ]
}
source_set("algorithm_test") {
}
source_set("container_test") {
}