absl_cleanup.gn (411B)
1 import("//chromium/build/config/linux/pkg_config.gni") 2 import("//chromium/build/shim_headers.gni") 3 4 pkg_config("system_absl_cleanup") { 5 packages = [ "absl_cleanup" ] 6 } 7 8 shim_headers("cleanup_shim") { 9 root_path = "." 10 prefix = "absl/cleanup/" 11 headers = [ "cleanup.h" ] 12 } 13 14 source_set("cleanup") { 15 deps = [ ":cleanup_shim" ] 16 public_configs = [ ":system_absl_cleanup" ] 17 } 18 19 source_set("cleanup_test") { 20 }