| 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 static_library("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", |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 47 ] | 47 ] |
| 48 | 48 |
| 49 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 49 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
| 50 | 50 |
| 51 deps = [ | 51 deps = [ |
| 52 ":ble", | 52 ":ble", |
| 53 "//base/test:test_support", | 53 "//base/test:test_support", |
| 54 "//components/cryptauth", | 54 "//components/cryptauth", |
| 55 "//components/cryptauth:test_support", | 55 "//components/cryptauth:test_support", |
| 56 "//components/prefs:test_support", | 56 "//components/prefs:test_support", |
| 57 "//components/proximity_auth/logging", |
| 57 "//device/bluetooth:mocks", | 58 "//device/bluetooth:mocks", |
| 58 "//testing/gmock", | 59 "//testing/gmock", |
| 59 "//testing/gtest", | 60 "//testing/gtest", |
| 60 ] | 61 ] |
| 61 | 62 |
| 62 public_deps = [ | 63 public_deps = [ |
| 63 "//components/cryptauth/proto", | 64 "//components/cryptauth/proto", |
| 64 ] | 65 ] |
| 65 } | 66 } |
| OLD | NEW |