aboutsummaryrefslogtreecommitdiffstats
path: root/libnos/BUILD
diff options
context:
space:
mode:
Diffstat (limited to 'libnos/BUILD')
-rw-r--r--libnos/BUILD12
1 files changed, 6 insertions, 6 deletions
diff --git a/libnos/BUILD b/libnos/BUILD
index edb46d5..c2c53c4 100644
--- a/libnos/BUILD
+++ b/libnos/BUILD
@@ -1,22 +1,22 @@
cc_library(
name = "libnos",
srcs = [
- "debug.cpp",
"NuggetClient.cpp",
+ "debug.cpp",
],
hdrs = [
- "include/nos/debug.h",
"include/nos/AppClient.h",
"include/nos/NuggetClient.h",
"include/nos/NuggetClientInterface.h",
+ "include/nos/debug.h",
],
includes = [
- "./include",
+ "include",
],
visibility = ["//visibility:public"],
deps = [
- "@nugget_host_generic//:nos_headers",
- "@nugget_host_generic_libnos_datagram//:libnos_datagram",
- "@nugget_host_generic_libnos_transport//:libnos_transport",
+ "//host/generic:nos_headers",
+ "//host/generic/libnos_datagram",
+ "//host/generic/libnos_transport",
],
)