mirror of
https://github.com/kidfromjupiter/nearby.git
synced 2026-09-16 15:36:12 -04:00
Cleanup BUILD dependencies.
PiperOrigin-RevId: 609501622
This commit is contained in:
committed by
Copybara-Service
parent
8561d03a21
commit
3dcca3abfc
+3
-2
@@ -46,8 +46,8 @@ cc_library(
|
||||
"//internal/crypto_cros",
|
||||
"//internal/interop:authentication_status",
|
||||
"//internal/network:types",
|
||||
"//sharing/common",
|
||||
"//sharing/common:compatible_u8_string",
|
||||
"//sharing/common:enum",
|
||||
"//sharing/internal/base",
|
||||
"//sharing/internal/public:logging",
|
||||
"//sharing/proto:share_cc_proto",
|
||||
@@ -135,7 +135,6 @@ cc_library(
|
||||
"//internal/analytics:event_logger",
|
||||
"//internal/base",
|
||||
"//internal/base:bluetooth_address",
|
||||
"//internal/flags:flag_reader",
|
||||
"//internal/flags:nearby_flags",
|
||||
"//internal/network:types",
|
||||
"//internal/platform:base",
|
||||
@@ -146,6 +145,7 @@ cc_library(
|
||||
"//sharing/certificates",
|
||||
"//sharing/common",
|
||||
"//sharing/common:compatible_u8_string",
|
||||
"//sharing/common:enum",
|
||||
"//sharing/contacts",
|
||||
"//sharing/fast_initiation:nearby_fast_initiation",
|
||||
"//sharing/flags/generated:generated_flags",
|
||||
@@ -258,6 +258,7 @@ cc_test(
|
||||
"//sharing/certificates:test_support",
|
||||
"//sharing/common",
|
||||
"//sharing/common:compatible_u8_string",
|
||||
"//sharing/common:enum",
|
||||
"//sharing/contacts",
|
||||
"//sharing/contacts:test_support",
|
||||
"//sharing/fast_initiation:nearby_fast_initiation",
|
||||
|
||||
@@ -29,7 +29,7 @@ cc_library(
|
||||
"//internal/analytics:event_logger",
|
||||
"//proto:sharing_enums_cc_proto",
|
||||
"//sharing:types",
|
||||
"//sharing/common",
|
||||
"//sharing/common:enum",
|
||||
"//sharing/internal/public:logging",
|
||||
"//sharing/proto:share_cc_proto",
|
||||
"//sharing/proto/analytics:sharing_log_cc_proto",
|
||||
@@ -49,7 +49,7 @@ cc_test(
|
||||
"//internal/platform/implementation/g3", # fixdeps: keep
|
||||
"//proto:sharing_enums_cc_proto",
|
||||
"//sharing:types",
|
||||
"//sharing/common",
|
||||
"//sharing/common:enum",
|
||||
"//sharing/proto:share_cc_proto",
|
||||
"//sharing/proto/analytics:sharing_log_cc_proto",
|
||||
"@com_github_protobuf_matchers//protobuf-matchers",
|
||||
|
||||
@@ -30,6 +30,7 @@ cc_library(
|
||||
"//internal/platform:types",
|
||||
"//internal/platform/implementation:types",
|
||||
"//sharing/common",
|
||||
"//sharing/common:enum",
|
||||
"//sharing/contacts",
|
||||
"//sharing/internal/api:platform",
|
||||
"//sharing/internal/base",
|
||||
@@ -70,10 +71,9 @@ cc_library(
|
||||
visibility = ["//visibility:public"],
|
||||
deps = [
|
||||
":certificates",
|
||||
"//internal/account",
|
||||
"//internal/base:bluetooth_address",
|
||||
"//internal/crypto_cros",
|
||||
"//sharing/common",
|
||||
"//sharing/common:enum",
|
||||
"//sharing/contacts",
|
||||
"//sharing/internal/api:platform",
|
||||
"//sharing/internal/public:types",
|
||||
@@ -97,11 +97,11 @@ cc_test(
|
||||
deps = [
|
||||
":certificates",
|
||||
":test_support",
|
||||
"//internal/data:data_manager",
|
||||
"//internal/platform/implementation:types",
|
||||
"//internal/platform/implementation/g3", # fixdeps: keep
|
||||
"//internal/test",
|
||||
"//sharing/common",
|
||||
"//sharing/common:enum",
|
||||
"//sharing/contacts:test_support",
|
||||
"//sharing/internal/api:mock_sharing_platform",
|
||||
"//sharing/internal/public:logging",
|
||||
@@ -113,7 +113,6 @@ cc_test(
|
||||
"@com_github_protobuf_matchers//protobuf-matchers",
|
||||
"@com_google_absl//absl/container:flat_hash_map",
|
||||
"@com_google_absl//absl/functional:any_invocable",
|
||||
"@com_google_absl//absl/meta:type_traits",
|
||||
"@com_google_absl//absl/status",
|
||||
"@com_google_absl//absl/status:statusor",
|
||||
"@com_google_absl//absl/strings",
|
||||
|
||||
@@ -21,7 +21,6 @@ cc_library(
|
||||
"nearby_share_switches.cc",
|
||||
],
|
||||
hdrs = [
|
||||
"nearby_share_enums.h",
|
||||
"nearby_share_prefs.h",
|
||||
"nearby_share_profile_info_provider.h",
|
||||
"nearby_share_switches.h",
|
||||
@@ -52,14 +51,9 @@ cc_library(
|
||||
|
||||
cc_library(
|
||||
name = "enum",
|
||||
srcs = [
|
||||
],
|
||||
hdrs = [
|
||||
"nearby_share_enums.h",
|
||||
],
|
||||
hdrs = ["nearby_share_enums.h"],
|
||||
visibility = ["//visibility:public"],
|
||||
deps = [
|
||||
],
|
||||
deps = [],
|
||||
)
|
||||
|
||||
cc_library(
|
||||
|
||||
@@ -30,20 +30,18 @@ cc_library(
|
||||
"//internal/platform:types",
|
||||
"//internal/platform/implementation:types",
|
||||
"//sharing/common",
|
||||
"//sharing/common:enum",
|
||||
"//sharing/internal/api:platform",
|
||||
"//sharing/internal/base:utf_utils",
|
||||
"//sharing/internal/public:logging",
|
||||
"//sharing/internal/public:types",
|
||||
"//sharing/proto:share_cc_proto",
|
||||
"//sharing/scheduling",
|
||||
"@com_google_absl//absl/base:core_headers",
|
||||
"@com_google_absl//absl/memory",
|
||||
"@com_google_absl//absl/random",
|
||||
"@com_google_absl//absl/status:statusor",
|
||||
"@com_google_absl//absl/strings",
|
||||
"@com_google_absl//absl/synchronization",
|
||||
"@com_google_absl//absl/time",
|
||||
"@com_google_protobuf//:protobuf_lite",
|
||||
],
|
||||
)
|
||||
|
||||
@@ -59,7 +57,7 @@ cc_library(
|
||||
visibility = ["//visibility:public"],
|
||||
deps = [
|
||||
":local_device_data",
|
||||
"//sharing/common",
|
||||
"//sharing/common:enum",
|
||||
"//sharing/internal/api:platform",
|
||||
"//sharing/internal/public:types",
|
||||
"//sharing/proto:share_cc_proto",
|
||||
@@ -79,6 +77,7 @@ cc_test(
|
||||
"//internal/platform/implementation/g3", # fixdeps: keep
|
||||
"//internal/test",
|
||||
"//sharing/common",
|
||||
"//sharing/common:enum",
|
||||
"//sharing/common:test_support",
|
||||
"//sharing/internal/api:mock_sharing_platform",
|
||||
"//sharing/internal/test:nearby_test",
|
||||
@@ -86,7 +85,6 @@ cc_test(
|
||||
"//sharing/scheduling",
|
||||
"//sharing/scheduling:test_support",
|
||||
"@com_github_protobuf_matchers//protobuf-matchers",
|
||||
"@com_google_absl//absl/container:flat_hash_map",
|
||||
"@com_google_absl//absl/status",
|
||||
"@com_google_absl//absl/status:statusor",
|
||||
"@com_google_absl//absl/strings",
|
||||
|
||||
Reference in New Issue
Block a user