| 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 13 matching lines...) Expand all Loading... |
| 24 "bluetooth_adapter_chromeos.cc", | 24 "bluetooth_adapter_chromeos.cc", |
| 25 "bluetooth_adapter_chromeos.h", | 25 "bluetooth_adapter_chromeos.h", |
| 26 "bluetooth_adapter_factory.cc", | 26 "bluetooth_adapter_factory.cc", |
| 27 "bluetooth_adapter_factory.h", | 27 "bluetooth_adapter_factory.h", |
| 28 "bluetooth_adapter_mac.h", | 28 "bluetooth_adapter_mac.h", |
| 29 "bluetooth_adapter_mac.mm", | 29 "bluetooth_adapter_mac.mm", |
| 30 "bluetooth_adapter_profile_chromeos.cc", | 30 "bluetooth_adapter_profile_chromeos.cc", |
| 31 "bluetooth_adapter_profile_chromeos.h", | 31 "bluetooth_adapter_profile_chromeos.h", |
| 32 "bluetooth_adapter_win.cc", | 32 "bluetooth_adapter_win.cc", |
| 33 "bluetooth_adapter_win.h", | 33 "bluetooth_adapter_win.h", |
| 34 "bluetooth_advertisement.cc", | |
| 35 "bluetooth_advertisement.h", | |
| 36 "bluetooth_advertisement_chromeos.cc", | |
| 37 "bluetooth_advertisement_chromeos.h", | |
| 38 "bluetooth_audio_sink.cc", | 34 "bluetooth_audio_sink.cc", |
| 39 "bluetooth_audio_sink.h", | 35 "bluetooth_audio_sink.h", |
| 40 "bluetooth_audio_sink_chromeos.cc", | 36 "bluetooth_audio_sink_chromeos.cc", |
| 41 "bluetooth_audio_sink_chromeos.h", | 37 "bluetooth_audio_sink_chromeos.h", |
| 42 "bluetooth_channel_mac.h", | 38 "bluetooth_channel_mac.h", |
| 43 "bluetooth_channel_mac.mm", | 39 "bluetooth_channel_mac.mm", |
| 44 "bluetooth_device.cc", | 40 "bluetooth_device.cc", |
| 45 "bluetooth_device.h", | 41 "bluetooth_device.h", |
| 46 "bluetooth_device_chromeos.cc", | 42 "bluetooth_device_chromeos.cc", |
| 47 "bluetooth_device_chromeos.h", | 43 "bluetooth_device_chromeos.h", |
| (...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 219 "test/mock_bluetooth_socket.h", | 215 "test/mock_bluetooth_socket.h", |
| 220 ] | 216 ] |
| 221 | 217 |
| 222 deps = [ | 218 deps = [ |
| 223 ":bluetooth", | 219 ":bluetooth", |
| 224 "//base", | 220 "//base", |
| 225 "//net", | 221 "//net", |
| 226 "//testing/gmock", | 222 "//testing/gmock", |
| 227 ] | 223 ] |
| 228 } | 224 } |
| OLD | NEW |