| 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("//tools/grit/grit_rule.gni") | 5 import("//tools/grit/grit_rule.gni") |
| 6 | 6 |
| 7 config("bluetooth_config") { | 7 config("bluetooth_config") { |
| 8 if (is_win) { | 8 if (is_win) { |
| 9 ldflags = [ | 9 ldflags = [ |
| 10 "/DELAYLOAD:BluetoothApis.dll", | 10 "/DELAYLOAD:BluetoothApis.dll", |
| (...skipping 196 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 207 "test/mock_bluetooth_gatt_notify_session.cc", | 207 "test/mock_bluetooth_gatt_notify_session.cc", |
| 208 "test/mock_bluetooth_gatt_notify_session.h", | 208 "test/mock_bluetooth_gatt_notify_session.h", |
| 209 "test/mock_bluetooth_gatt_service.cc", | 209 "test/mock_bluetooth_gatt_service.cc", |
| 210 "test/mock_bluetooth_gatt_service.h", | 210 "test/mock_bluetooth_gatt_service.h", |
| 211 "test/mock_bluetooth_socket.cc", | 211 "test/mock_bluetooth_socket.cc", |
| 212 "test/mock_bluetooth_socket.h", | 212 "test/mock_bluetooth_socket.h", |
| 213 ] | 213 ] |
| 214 | 214 |
| 215 deps = [ | 215 deps = [ |
| 216 ":bluetooth", | 216 ":bluetooth", |
| 217 "//net", | |
| 218 "//testing/gmock", | 217 "//testing/gmock", |
| 219 ] | 218 ] |
| 220 public_deps = [ | |
| 221 "//base", | |
| 222 ] | |
| 223 } | 219 } |
| OLD | NEW |