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 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", |
11 "bluetooth_low_energy_connection.cc", | 11 "bluetooth_low_energy_connection.cc", |
12 "bluetooth_low_energy_connection.h", | 12 "bluetooth_low_energy_connection.h", |
13 "bluetooth_low_energy_connection_finder.cc", | 13 "bluetooth_low_energy_connection_finder.cc", |
14 "bluetooth_low_energy_connection_finder.h", | 14 "bluetooth_low_energy_connection_finder.h", |
15 "bluetooth_low_energy_device_whitelist.cc", | 15 "bluetooth_low_energy_device_whitelist.cc", |
16 "bluetooth_low_energy_device_whitelist.h", | 16 "bluetooth_low_energy_device_whitelist.h", |
17 "bluetooth_low_energy_weave_defines.h", | 17 "bluetooth_low_energy_weave_defines.h", |
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
64 "//components/proximity_auth:test_support", | 64 "//components/proximity_auth:test_support", |
65 "//device/bluetooth:mocks", | 65 "//device/bluetooth:mocks", |
66 "//testing/gmock", | 66 "//testing/gmock", |
67 "//testing/gtest", | 67 "//testing/gtest", |
68 ] | 68 ] |
69 | 69 |
70 public_deps = [ | 70 public_deps = [ |
71 "//components/proximity_auth/cryptauth/proto", | 71 "//components/proximity_auth/cryptauth/proto", |
72 ] | 72 ] |
73 } | 73 } |
OLD | NEW |