reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced
    1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
config("atomic_config") {
  visibility = [ ":atomic" ]
  libs = [ "atomic" ]
}

group("atomic") {
  # Needed on platforms that have no native support for 64-bit atomics.
  # FIXME: Check which platforms need this; certainly needs to be false on
  # macOS and Windows, and doesn't seem to be needed on Linux either.
  needs_explicit_lib_atomic = false
  if (needs_explicit_lib_atomic) {
    public_configs = [ ":atomic_config" ]
  }
}