| 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 source_set("ble") { | 7 source_set("ble") { |
| 8 sources = [ | 8 sources = [ |
| 9 "bluetooth_low_energy_advertisement_rotator.cc", |
| 10 "bluetooth_low_energy_advertisement_rotator.h", |
| 9 "bluetooth_low_energy_characteristics_finder.cc", | 11 "bluetooth_low_energy_characteristics_finder.cc", |
| 10 "bluetooth_low_energy_characteristics_finder.h", | 12 "bluetooth_low_energy_characteristics_finder.h", |
| 11 "bluetooth_low_energy_connection.cc", | 13 "bluetooth_low_energy_connection.cc", |
| 12 "bluetooth_low_energy_connection.h", | 14 "bluetooth_low_energy_connection.h", |
| 13 "bluetooth_low_energy_connection_finder.cc", | 15 "bluetooth_low_energy_connection_finder.cc", |
| 14 "bluetooth_low_energy_connection_finder.h", | 16 "bluetooth_low_energy_connection_finder.h", |
| 15 "bluetooth_low_energy_device_whitelist.cc", | 17 "bluetooth_low_energy_device_whitelist.cc", |
| 16 "bluetooth_low_energy_device_whitelist.h", | 18 "bluetooth_low_energy_device_whitelist.h", |
| 19 "bluetooth_low_energy_eid_generator.h", |
| 17 "bluetooth_low_energy_weave_client_connection.cc", | 20 "bluetooth_low_energy_weave_client_connection.cc", |
| 18 "bluetooth_low_energy_weave_client_connection.h", | 21 "bluetooth_low_energy_weave_client_connection.h", |
| 19 "bluetooth_low_energy_weave_defines.h", | 22 "bluetooth_low_energy_weave_defines.h", |
| 20 "bluetooth_low_energy_weave_packet_generator.cc", | 23 "bluetooth_low_energy_weave_packet_generator.cc", |
| 21 "bluetooth_low_energy_weave_packet_generator.h", | 24 "bluetooth_low_energy_weave_packet_generator.h", |
| 22 "bluetooth_low_energy_weave_packet_receiver.cc", | 25 "bluetooth_low_energy_weave_packet_receiver.cc", |
| 23 "bluetooth_low_energy_weave_packet_receiver.h", | 26 "bluetooth_low_energy_weave_packet_receiver.h", |
| 27 "bluetooth_low_energy_weave_server.cc", |
| 28 "bluetooth_low_energy_weave_server.h", |
| 29 "bluetooth_low_energy_weave_server_connection.cc", |
| 30 "bluetooth_low_energy_weave_server_connection.h", |
| 24 "fake_wire_message.cc", | 31 "fake_wire_message.cc", |
| 25 "fake_wire_message.h", | 32 "fake_wire_message.h", |
| 26 "pref_names.cc", | 33 "pref_names.cc", |
| 27 "pref_names.h", | 34 "pref_names.h", |
| 28 "remote_attribute.h", | 35 "remote_attribute.h", |
| 29 ] | 36 ] |
| 30 | 37 |
| 31 deps = [ | 38 deps = [ |
| 32 "//base", | 39 "//base", |
| 33 "//components/prefs", | 40 "//components/prefs", |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 67 "//components/proximity_auth:test_support", | 74 "//components/proximity_auth:test_support", |
| 68 "//device/bluetooth:mocks", | 75 "//device/bluetooth:mocks", |
| 69 "//testing/gmock", | 76 "//testing/gmock", |
| 70 "//testing/gtest", | 77 "//testing/gtest", |
| 71 ] | 78 ] |
| 72 | 79 |
| 73 public_deps = [ | 80 public_deps = [ |
| 74 "//components/proximity_auth/cryptauth/proto", | 81 "//components/proximity_auth/cryptauth/proto", |
| 75 ] | 82 ] |
| 76 } | 83 } |
| OLD | NEW |