mirror of
https://github.com/kidfromjupiter/nearby.git
synced 2026-09-15 07:06:11 -04:00
Signed-off-by: Alexey Polyudov <apolyudov@google.com> Change-Id: I8936b527079074d5c3af5531b9245063767cc4a7
46 lines
997 B
Python
46 lines
997 B
Python
cc_library(
|
|
name = "posix_lock",
|
|
srcs = [
|
|
"posix_lock.cc",
|
|
],
|
|
hdrs = [
|
|
"posix_lock.h",
|
|
],
|
|
visibility = [
|
|
"//googlemac/iPhone/Shared/Nearby/Connections:__subpackages__",
|
|
"//platform/impl:__subpackages__",
|
|
],
|
|
deps = [
|
|
"//platform/api",
|
|
],
|
|
)
|
|
|
|
cc_library(
|
|
name = "posix_condition_variable",
|
|
srcs = [
|
|
"posix_condition_variable.cc",
|
|
],
|
|
hdrs = [
|
|
"posix_condition_variable.h",
|
|
],
|
|
visibility = [
|
|
"//googlemac/iPhone/Shared/Nearby/Connections:__subpackages__",
|
|
"//platform/impl:__subpackages__",
|
|
],
|
|
deps = [
|
|
":posix_lock",
|
|
"//platform:types",
|
|
"//platform/api:condition_variable",
|
|
],
|
|
)
|
|
|
|
cc_library(
|
|
name = "atomic_boolean",
|
|
hdrs = ["atomic_boolean_impl.h"],
|
|
visibility = [
|
|
"//googlemac/iPhone/Shared/Nearby/Connections:__subpackages__",
|
|
"//platform/impl:__subpackages__",
|
|
],
|
|
deps = ["//platform/api"],
|
|
)
|