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