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: I9850950db8bd84f0904ea1a413151887f52098cf
57 lines
1.3 KiB
Python
57 lines
1.3 KiB
Python
objc_library(
|
|
name = "types",
|
|
srcs = [
|
|
"log_message.mm",
|
|
"scheduled_executor.mm",
|
|
],
|
|
hdrs = [
|
|
"atomic_boolean.h",
|
|
"atomic_reference.h",
|
|
"condition_variable.h",
|
|
"count_down_latch.h",
|
|
"log_message.h",
|
|
"multi_thread_executor.h",
|
|
"mutex.h",
|
|
"scheduled_executor.h",
|
|
"single_thread_executor.h",
|
|
],
|
|
visibility = [
|
|
"//platform/impl/ios:__pkg__",
|
|
],
|
|
deps = [
|
|
"//base",
|
|
"//platform/api:platform",
|
|
"//platform/api:types",
|
|
"//platform/base",
|
|
"//platform/base:util",
|
|
"//platform/impl/shared:posix_mutex",
|
|
"//absl/base:core_headers",
|
|
"//absl/synchronization",
|
|
"//absl/time",
|
|
"//thread",
|
|
],
|
|
)
|
|
|
|
objc_library(
|
|
name = "ios",
|
|
srcs = [
|
|
"platform.mm",
|
|
],
|
|
visibility = [
|
|
"//googlemac/iPhone/Shared/Nearby/Connections:__subpackages__",
|
|
"//core:__subpackages__",
|
|
"//platform:__subpackages__",
|
|
],
|
|
deps = [
|
|
":types",
|
|
"//platform/api:comm",
|
|
"//platform/api:platform",
|
|
"//platform/api:types",
|
|
"//platform/impl/shared:file",
|
|
"//absl/base:core_headers",
|
|
"//absl/memory",
|
|
"//absl/strings",
|
|
"//absl/time",
|
|
],
|
|
)
|