| 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_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 14 matching lines...) Expand all Loading... |
| 25 "//device/bluetooth", | 25 "//device/bluetooth", |
| 26 "//net", | 26 "//net", |
| 27 ] | 27 ] |
| 28 } | 28 } |
| 29 | 29 |
| 30 source_set("unit_tests") { | 30 source_set("unit_tests") { |
| 31 testonly = true | 31 testonly = true |
| 32 sources = [ | 32 sources = [ |
| 33 "bluetooth_low_energy_characteristics_finder_unittest.cc", | 33 "bluetooth_low_energy_characteristics_finder_unittest.cc", |
| 34 "bluetooth_low_energy_connection_finder_unittest.cc", | 34 "bluetooth_low_energy_connection_finder_unittest.cc", |
| 35 "bluetooth_low_energy_connection_unittest.cc", |
| 35 "proximity_auth_ble_system_unittest.cc", | 36 "proximity_auth_ble_system_unittest.cc", |
| 36 ] | 37 ] |
| 37 | 38 |
| 38 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 39 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
| 39 | 40 |
| 40 deps = [ | 41 deps = [ |
| 41 ":ble", | 42 ":ble", |
| 42 "//components/proximity_auth", | 43 "//components/proximity_auth", |
| 43 "//base/test:test_support", | 44 "//base/test:test_support", |
| 44 "//device/bluetooth:mocks", | 45 "//device/bluetooth:mocks", |
| 45 "//testing/gmock", | 46 "//testing/gmock", |
| 46 "//testing/gtest", | 47 "//testing/gtest", |
| 47 ] | 48 ] |
| 48 } | 49 } |
| OLD | NEW |