1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144
|
# Copyright 2021 The Chromium Authors
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
assert(is_chromeos, "Quick Pair protocols (e.g. Fast Pair) are ash-chrome only")
source_set("repository") {
sources = [
"fast_pair/device_address_map.cc",
"fast_pair/device_address_map.h",
"fast_pair/device_image_store.cc",
"fast_pair/device_image_store.h",
"fast_pair/device_metadata.cc",
"fast_pair/device_metadata.h",
"fast_pair/device_metadata_fetcher.cc",
"fast_pair/device_metadata_fetcher.h",
"fast_pair/fast_pair_image_decoder.cc",
"fast_pair/fast_pair_image_decoder.h",
"fast_pair/fast_pair_image_decoder_impl.cc",
"fast_pair/fast_pair_image_decoder_impl.h",
"fast_pair/footprints_fetcher.h",
"fast_pair/footprints_fetcher_impl.cc",
"fast_pair/footprints_fetcher_impl.h",
"fast_pair/pairing_metadata.cc",
"fast_pair/pairing_metadata.h",
"fast_pair/pending_write_store.cc",
"fast_pair/pending_write_store.h",
"fast_pair/proto_conversions.cc",
"fast_pair/proto_conversions.h",
"fast_pair/saved_device_registry.cc",
"fast_pair/saved_device_registry.h",
"fast_pair_repository.cc",
"fast_pair_repository.h",
"fast_pair_repository_impl.cc",
"fast_pair_repository_impl.h",
"http_fetcher.cc",
"http_fetcher.h",
"oauth_http_fetcher.cc",
"oauth_http_fetcher.h",
"unauthenticated_http_fetcher.cc",
"unauthenticated_http_fetcher.h",
]
deps = [
"//ash/constants:constants",
"//ash/quick_pair/common",
"//ash/quick_pair/proto:fastpair_proto",
"//base",
"//chromeos/ash/components/network",
"//chromeos/ash/services/bluetooth_config/public/cpp",
"//chromeos/ash/services/quick_pair/public/cpp",
"//components/cross_device/logging:logging",
"//components/image_fetcher/core",
"//components/prefs",
"//components/signin/public/identity_manager",
"//crypto",
"//device/bluetooth",
"//google_apis",
"//net/traffic_annotation",
"//services/data_decoder/public/cpp",
"//services/network/public/cpp",
"//services/network/public/mojom:url_loader_base",
"//third_party/protobuf:protobuf_lite",
"//ui/base",
]
}
static_library("test_support") {
testonly = true
sources = [
"fake_device_metadata_http_fetcher.cc",
"fake_device_metadata_http_fetcher.h",
"fake_fast_pair_repository.cc",
"fake_fast_pair_repository.h",
"fast_pair/fake_footprints_fetcher.cc",
"fast_pair/fake_footprints_fetcher.h",
"fast_pair/mock_fast_pair_image_decoder.cc",
"fast_pair/mock_fast_pair_image_decoder.h",
"mock_fast_pair_repository.cc",
"mock_fast_pair_repository.h",
"mock_http_fetcher.cc",
"mock_http_fetcher.h",
]
deps = [
":repository",
"//ash/quick_pair/common",
"//ash/quick_pair/proto:fastpair_proto",
"//base",
"//base/test:test_support",
"//chromeos/ash/components/network:test_support",
"//chromeos/ash/services/bluetooth_config/public/cpp",
"//device/bluetooth",
"//net",
"//net/traffic_annotation:test_support",
"//services/network:test_support",
"//services/network/public/cpp",
"//services/network/public/mojom",
"//testing/gtest",
"//url",
]
}
source_set("unit_tests") {
testonly = true
sources = [
"fast_pair/device_address_map_unittest.cc",
"fast_pair/device_image_store_unittest.cc",
"fast_pair/device_metadata_fetcher_unittest.cc",
"fast_pair/pending_write_store_unittest.cc",
"fast_pair/saved_device_registry_unittest.cc",
"fast_pair_repository_impl_unittest.cc",
"fast_pair_repository_unittest.cc",
"oauth_http_fetcher_unittest.cc",
"unauthenticated_http_fetcher_unittest.cc",
]
deps = [
":repository",
":test_support",
"//ash:test_support",
"//ash/quick_pair/common",
"//ash/quick_pair/common:test_support",
"//ash/quick_pair/proto:fastpair_proto",
"//base",
"//base/test:test_support",
"//chromeos/ash/services/bluetooth_config/public/cpp",
"//chromeos/ash/services/quick_pair/public/cpp",
"//components/prefs:test_support",
"//components/signin/public/identity_manager:test_support",
"//crypto",
"//device/bluetooth:mocks",
"//net",
"//net/traffic_annotation:test_support",
"//services/data_decoder/public/cpp:test_support",
"//services/network:test_support",
"//services/network/public/cpp",
"//services/network/public/mojom",
"//testing/gtest",
"//ui/gfx:test_support",
]
}
|