mirror of
https://github.com/kidfromjupiter/nearby.git
synced 2026-09-14 22:56:12 -04:00
Signed-off-by: Alexey Polyudov <apolyudov@google.com> Change-Id: I8936b527079074d5c3af5531b9245063767cc4a7
35 lines
628 B
Python
35 lines
628 B
Python
cc_library(
|
|
name = "posix_mutex",
|
|
srcs = [
|
|
"posix_mutex.cc",
|
|
],
|
|
hdrs = [
|
|
"posix_mutex.h",
|
|
],
|
|
visibility = [
|
|
"//platform_v2/impl:__subpackages__",
|
|
],
|
|
deps = [
|
|
"//platform_v2/api",
|
|
"//platform_v2/base",
|
|
],
|
|
)
|
|
|
|
cc_library(
|
|
name = "posix_condition_variable",
|
|
srcs = [
|
|
"posix_condition_variable.cc",
|
|
],
|
|
hdrs = [
|
|
"posix_condition_variable.h",
|
|
],
|
|
visibility = [
|
|
"//platform_v2/impl:__subpackages__",
|
|
],
|
|
deps = [
|
|
":posix_mutex",
|
|
"//platform_v2/api",
|
|
"//platform_v2/base",
|
|
],
|
|
)
|