blob: df5cd20f4995a1fa896473ceb1d5f387c0ebd0e3 [file] [log] [blame]
import("//build/config/linux/pkg_config.gni")
import("//build/shim_headers.gni")
pkg_config("system_absl_time") {
packages = [ "absl_time" ]
}
shim_headers("time_shim") {
root_path = "."
prefix = "absl/time/"
headers = [
"civil_time.h",
"clock.h",
"time.h",
]
}
source_set("time") {
deps = [ ":time_shim" ]
public_configs = [ ":system_absl_time" ]
}