mirror of
https://github.com/kidfromjupiter/nearby.git
synced 2026-09-16 15:36:12 -04:00
125 lines
4.3 KiB
Python
125 lines
4.3 KiB
Python
licenses(["notice"])
|
|
|
|
cc_library(
|
|
name = "certificates",
|
|
srcs = [
|
|
"common.cc",
|
|
"nearby_share_certificate_manager.cc",
|
|
"nearby_share_certificate_manager_impl.cc",
|
|
"nearby_share_certificate_storage.cc",
|
|
"nearby_share_certificate_storage_impl.cc",
|
|
"nearby_share_decrypted_public_certificate.cc",
|
|
"nearby_share_encrypted_metadata_key.cc",
|
|
"nearby_share_private_certificate.cc",
|
|
],
|
|
hdrs = [
|
|
"common.h",
|
|
"constants.h",
|
|
"nearby_share_certificate_manager.h",
|
|
"nearby_share_certificate_manager_impl.h",
|
|
"nearby_share_certificate_storage.h",
|
|
"nearby_share_certificate_storage_impl.h",
|
|
"nearby_share_decrypted_public_certificate.h",
|
|
"nearby_share_encrypted_metadata_key.h",
|
|
"nearby_share_private_certificate.h",
|
|
],
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
"//internal/base",
|
|
"//internal/crypto_cros",
|
|
"//internal/platform:types",
|
|
"//internal/platform/implementation:types",
|
|
"//sharing/common",
|
|
"//sharing/contacts",
|
|
"//sharing/internal/api:platform",
|
|
"//sharing/internal/base",
|
|
"//sharing/internal/public:logging",
|
|
"//sharing/internal/public:types",
|
|
"//sharing/local_device_data",
|
|
"//sharing/proto:share_cc_proto",
|
|
"//sharing/scheduling",
|
|
"@com_google_absl//absl/container:btree",
|
|
"@com_google_absl//absl/container:flat_hash_map",
|
|
"@com_google_absl//absl/container:flat_hash_set",
|
|
"@com_google_absl//absl/functional:any_invocable",
|
|
"@com_google_absl//absl/functional:bind_front",
|
|
"@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_absl//absl/types:span",
|
|
"@com_google_protobuf//:protobuf_lite",
|
|
],
|
|
)
|
|
|
|
cc_library(
|
|
name = "test_support",
|
|
testonly = True,
|
|
srcs = [
|
|
"fake_nearby_share_certificate_manager.cc",
|
|
"fake_nearby_share_certificate_storage.cc",
|
|
"test_util.cc",
|
|
],
|
|
hdrs = [
|
|
"fake_nearby_share_certificate_manager.h",
|
|
"fake_nearby_share_certificate_storage.h",
|
|
"test_util.h",
|
|
],
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
":certificates",
|
|
"//internal/account",
|
|
"//internal/base:bluetooth_address",
|
|
"//internal/crypto_cros",
|
|
"//sharing/common",
|
|
"//sharing/contacts",
|
|
"//sharing/internal/api:platform",
|
|
"//sharing/internal/public:types",
|
|
"//sharing/local_device_data",
|
|
"//sharing/proto:share_cc_proto",
|
|
"@com_google_absl//absl/strings",
|
|
"@com_google_absl//absl/time",
|
|
"@com_google_absl//absl/types:span",
|
|
],
|
|
)
|
|
|
|
cc_test(
|
|
name = "certificates_test",
|
|
srcs = [
|
|
"common_test.cc",
|
|
"nearby_share_certificate_manager_impl_test.cc",
|
|
"nearby_share_certificate_storage_impl_test.cc",
|
|
"nearby_share_decrypted_public_certificate_test.cc",
|
|
"nearby_share_private_certificate_test.cc",
|
|
],
|
|
deps = [
|
|
":certificates",
|
|
":test_support",
|
|
"//internal/data:data_manager",
|
|
"//internal/platform/implementation:types",
|
|
"//internal/platform/implementation/g3", # fixdeps: keep
|
|
"//internal/test",
|
|
"//sharing/common",
|
|
"//sharing/contacts:test_support",
|
|
"//sharing/internal/api:mock_sharing_platform",
|
|
"//sharing/internal/public:logging",
|
|
"//sharing/internal/test:nearby_test",
|
|
"//sharing/local_device_data:test_support",
|
|
"//sharing/proto:share_cc_proto",
|
|
"//sharing/scheduling",
|
|
"//sharing/scheduling:test_support",
|
|
"@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",
|
|
"@com_google_absl//absl/time",
|
|
"@com_google_absl//absl/types:span",
|
|
"@com_google_googletest//:gtest_main",
|
|
],
|
|
)
|