| Index: components/proximity_auth/BUILD.gn
|
| diff --git a/components/proximity_auth/BUILD.gn b/components/proximity_auth/BUILD.gn
|
| index 54800b9cb8016ccbb95316639ad2809ecc93d34c..4b3227b374b8c16192fb9c0021415e20f6342cba 100644
|
| --- a/components/proximity_auth/BUILD.gn
|
| +++ b/components/proximity_auth/BUILD.gn
|
| @@ -10,6 +10,8 @@ static_library("proximity_auth") {
|
| "bluetooth_connection.h",
|
| "bluetooth_connection_finder.cc",
|
| "bluetooth_connection_finder.h",
|
| + "bluetooth_low_energy_connection_finder.cc",
|
| + "bluetooth_low_energy_connection_finder.h",
|
| "bluetooth_util.cc",
|
| "bluetooth_util.h",
|
| "bluetooth_util_chromeos.cc",
|
| @@ -52,18 +54,12 @@ static_library("proximity_auth") {
|
| "//components/cryptauth",
|
| "//components/cryptauth/ble",
|
| "//components/prefs",
|
| - "//components/proximity_auth/ble",
|
| "//components/proximity_auth/logging",
|
| "//components/signin/core/account_id:account_id",
|
| "//device/bluetooth",
|
| "//net",
|
| ]
|
|
|
| - # TODO(https://crbug.com/562683): This whitelists a circular include
|
| - # dependency between this target and the following targets which should not
|
| - # exist.
|
| - allow_circular_includes_from = [ "//components/proximity_auth/ble" ]
|
| -
|
| if (is_chromeos) {
|
| deps += [ "//chromeos" ]
|
| }
|
| @@ -98,6 +94,7 @@ source_set("unit_tests") {
|
| sources = [
|
| "bluetooth_connection_finder_unittest.cc",
|
| "bluetooth_connection_unittest.cc",
|
| + "bluetooth_low_energy_connection_finder_unittest.cc",
|
| "messenger_impl_unittest.cc",
|
| "proximity_auth_pref_manager_unittest.cc",
|
| "proximity_auth_system_unittest.cc",
|
| @@ -117,8 +114,8 @@ source_set("unit_tests") {
|
| "//base/test:test_support",
|
| "//components/cryptauth:test_support",
|
| "//components/cryptauth:unit_tests",
|
| + "//components/cryptauth/ble",
|
| "//components/prefs:test_support",
|
| - "//components/proximity_auth/ble:unit_tests",
|
| "//components/proximity_auth/logging",
|
| "//components/proximity_auth/logging:unit_tests",
|
| "//device/bluetooth:mocks",
|
|
|