| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 import("//testing/test.gni") | 5 import("//testing/test.gni") |
| 6 | 6 |
| 7 static_library("ble") { | 7 static_library("ble") { |
| 8 sources = [ | 8 sources = [ |
| 9 "bluetooth_low_energy_characteristics_finder.cc", | 9 "bluetooth_low_energy_characteristics_finder.cc", |
| 10 "bluetooth_low_energy_characteristics_finder.h", | 10 "bluetooth_low_energy_characteristics_finder.h", |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 "bluetooth_low_energy_weave_packet_receiver.h", | 23 "bluetooth_low_energy_weave_packet_receiver.h", |
| 24 "fake_wire_message.cc", | 24 "fake_wire_message.cc", |
| 25 "fake_wire_message.h", | 25 "fake_wire_message.h", |
| 26 "pref_names.cc", | 26 "pref_names.cc", |
| 27 "pref_names.h", | 27 "pref_names.h", |
| 28 "remote_attribute.h", | 28 "remote_attribute.h", |
| 29 ] | 29 ] |
| 30 | 30 |
| 31 deps = [ | 31 deps = [ |
| 32 "//base", | 32 "//base", |
| 33 "//components/cryptauth", |
| 33 "//components/prefs", | 34 "//components/prefs", |
| 34 "//components/proximity_auth/logging", | 35 "//components/proximity_auth/logging", |
| 35 | 36 |
| 36 # TODO(https://crbug.com/562683): This component has a circular dependency | 37 # TODO(https://crbug.com/562683): This component has a circular dependency |
| 37 # with the root proximity auth target. It is whitelisted in that target for | 38 # with the root proximity auth target. It is whitelisted in that target for |
| 38 # includes. | 39 # includes. |
| 39 #"//components/proximity_auth", | 40 #"//components/proximity_auth", |
| 40 "//device/bluetooth", | 41 "//device/bluetooth", |
| 41 "//net", | 42 "//net", |
| 42 ] | 43 ] |
| (...skipping 13 matching lines...) Expand all Loading... |
| 56 "bluetooth_low_energy_weave_client_connection_unittest.cc", | 57 "bluetooth_low_energy_weave_client_connection_unittest.cc", |
| 57 "bluetooth_low_energy_weave_packet_generator_unittest.cc", | 58 "bluetooth_low_energy_weave_packet_generator_unittest.cc", |
| 58 "bluetooth_low_energy_weave_packet_receiver_unittest.cc", | 59 "bluetooth_low_energy_weave_packet_receiver_unittest.cc", |
| 59 ] | 60 ] |
| 60 | 61 |
| 61 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 62 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
| 62 | 63 |
| 63 deps = [ | 64 deps = [ |
| 64 ":ble", | 65 ":ble", |
| 65 "//base/test:test_support", | 66 "//base/test:test_support", |
| 67 "//components/cryptauth", |
| 66 "//components/prefs:test_support", | 68 "//components/prefs:test_support", |
| 67 "//components/proximity_auth:test_support", | 69 "//components/proximity_auth:test_support", |
| 68 "//device/bluetooth:mocks", | 70 "//device/bluetooth:mocks", |
| 69 "//testing/gmock", | 71 "//testing/gmock", |
| 70 "//testing/gtest", | 72 "//testing/gtest", |
| 71 ] | 73 ] |
| 72 | 74 |
| 73 public_deps = [ | 75 public_deps = [ |
| 74 "//components/cryptauth/proto", | 76 "//components/cryptauth/proto", |
| 75 ] | 77 ] |
| 76 } | 78 } |
| OLD | NEW |