updated BUILD files and MODULE.bazel for bazel 9

This commit is contained in:
Lasan Mahaliyana
2026-02-06 23:28:25 +05:30
parent cdfe437831
commit 3fd04004d6
5 changed files with 38 additions and 5 deletions
+24
View File
@@ -13,6 +13,30 @@
# limitations under the License.
licenses(["notice"])
load("@rules_cc//cc:defs.bzl", "cc_library", "cc_binary")
cc_library(
name = "nearby_connections_service_linux",
srcs = ["nearby_connections_service_linux.cc"],
hdrs = [
"nearby_connections_service_linux.h",
"//sharing:nearby_connections_service.h",
],
visibility = ["//visibility:public"],
deps = [
"//connections:core",
"//connections:core_types",
"//internal/base:file_path",
"//internal/platform:base",
"//internal/platform:logging",
"//internal/platform:mac_address",
"//sharing:connection_types",
"@com_google_absl//absl/container:flat_hash_map",
"@com_google_absl//absl/strings:string_view",
"@com_google_absl//absl/time",
"@com_google_absl//absl/types:span",
],
)
cc_library(
name = "nearby_sharing_service_linux",