chromium/build/linux/unbundle/absl_synchronization.gn

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

pkg_config("system_absl_synchronization") {
  packages = [ "absl_synchronization" ]
}

shim_headers("synchronization_shim") {
  root_path = "."
  prefix = "absl/synchronization/"
  headers = [
    "barrier.h",
    "blocking_counter.h",
    "mutex.h",
    "notification.h",
  ]
}

source_set("synchronization") {
  deps = [ ":synchronization_shim" ]
  public_configs = [ ":system_absl_synchronization" ]
}

source_set("kernel_timeout_internal_test") {
}
source_set("waiter_test") {
}