absl_time.gn (426B)
1 import("//chromium/build/config/linux/pkg_config.gni") 2 import("//chromium/build/shim_headers.gni") 3 4 pkg_config("system_absl_time") { 5 packages = [ "absl_time" ] 6 } 7 8 shim_headers("time_shim") { 9 root_path = "." 10 prefix = "absl/time/" 11 headers = [ 12 "civil_time.h", 13 "clock.h", 14 "time.h", 15 ] 16 } 17 18 source_set("time") { 19 deps = [ ":time_shim" ] 20 public_configs = [ ":system_absl_time" ] 21 } 22 23 source_set("time_test") { 24 }