mirror of
https://github.com/kidfromjupiter/nearby.git
synced 2026-09-15 15:16:12 -04:00
Signed-off-by: Alexey Polyudov <apolyudov@google.com> Change-Id: I2cf5bf225b76f4c1541954651f3a7544a14e0cec
39 lines
621 B
Python
39 lines
621 B
Python
cc_library(
|
|
name = "config",
|
|
hdrs = [
|
|
"config.h",
|
|
],
|
|
visibility = [
|
|
"//visibility:private",
|
|
],
|
|
)
|
|
|
|
cc_library(
|
|
name = "string",
|
|
hdrs = [
|
|
"string.h",
|
|
],
|
|
visibility = [
|
|
"//core:__subpackages__",
|
|
"//platform:__subpackages__",
|
|
"//location/nearby/setup/core:__subpackages__",
|
|
],
|
|
deps = [
|
|
":config",
|
|
],
|
|
)
|
|
|
|
cc_library(
|
|
name = "down_cast",
|
|
hdrs = [
|
|
"down_cast.h",
|
|
],
|
|
visibility = [
|
|
"//core:__subpackages__",
|
|
"//platform:__subpackages__",
|
|
],
|
|
deps = [
|
|
":config",
|
|
],
|
|
)
|