1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
   15
   16
   17
   18
   19
   20

build / linux / unbundle / absl_cleanup.gn [blame]

import("//build/config/linux/pkg_config.gni")
import("//build/shim_headers.gni")

pkg_config("system_absl_cleanup") {
  packages = [ "absl_cleanup" ]
}

shim_headers("cleanup_shim") {
  root_path = "."
  prefix = "absl/cleanup/"
  headers = [ "cleanup.h" ]
}

source_set("cleanup") {
  deps = [ ":cleanup_shim" ]
  public_configs = [ ":system_absl_cleanup" ]
}

source_set("cleanup_test") {
}