| 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 28 matching lines...) Expand all Loading... |
| 39 "bluetooth_low_energy_characteristics_finder_unittest.cc", | 39 "bluetooth_low_energy_characteristics_finder_unittest.cc", |
| 40 "bluetooth_low_energy_connection_finder_unittest.cc", | 40 "bluetooth_low_energy_connection_finder_unittest.cc", |
| 41 "bluetooth_low_energy_connection_unittest.cc", | 41 "bluetooth_low_energy_connection_unittest.cc", |
| 42 "bluetooth_low_energy_device_whitelist_unittest.cc", | 42 "bluetooth_low_energy_device_whitelist_unittest.cc", |
| 43 ] | 43 ] |
| 44 | 44 |
| 45 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 45 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
| 46 | 46 |
| 47 deps = [ | 47 deps = [ |
| 48 ":ble", | 48 ":ble", |
| 49 "//base/test:test_support", |
| 49 "//components/proximity_auth", | 50 "//components/proximity_auth", |
| 50 "//base/test:test_support", | |
| 51 "//device/bluetooth:mocks", | 51 "//device/bluetooth:mocks", |
| 52 "//testing/gmock", | 52 "//testing/gmock", |
| 53 "//testing/gtest", | 53 "//testing/gtest", |
| 54 ] | 54 ] |
| 55 | 55 |
| 56 public_deps = [ | 56 public_deps = [ |
| 57 "//components/proximity_auth/cryptauth/proto", | 57 "//components/proximity_auth/cryptauth/proto", |
| 58 ] | 58 ] |
| 59 } | 59 } |
| OLD | NEW |