Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(78)

Side by Side Diff: device/bluetooth/BUILD.gn

Issue 1080593007: bluetooth: Stub out BluetoothAdapterAndroid (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « device/BUILD.gn ('k') | device/bluetooth/bluetooth.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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",
11 11
12 # Despite MSDN stating that Bthprops.dll contains the 12 # Despite MSDN stating that Bthprops.dll contains the
13 # symbols declared by bthprops.lib, they actually reside here: 13 # symbols declared by bthprops.lib, they actually reside here:
14 "/DELAYLOAD:Bthprops.cpl", 14 "/DELAYLOAD:Bthprops.cpl",
15 "/DELAYLOAD:setupapi.dll", 15 "/DELAYLOAD:setupapi.dll",
16 ] 16 ]
17 } 17 }
18 } 18 }
19 19
20 component("bluetooth") { 20 component("bluetooth") {
21 sources = [ 21 sources = [
22 "bluetooth_adapter.cc", 22 "bluetooth_adapter.cc",
23 "bluetooth_adapter.h", 23 "bluetooth_adapter.h",
24 "bluetooth_adapter_android.cc",
25 "bluetooth_adapter_android.h",
24 "bluetooth_adapter_chromeos.cc", 26 "bluetooth_adapter_chromeos.cc",
25 "bluetooth_adapter_chromeos.h", 27 "bluetooth_adapter_chromeos.h",
26 "bluetooth_adapter_factory.cc", 28 "bluetooth_adapter_factory.cc",
27 "bluetooth_adapter_factory.h", 29 "bluetooth_adapter_factory.h",
28 "bluetooth_adapter_mac.h", 30 "bluetooth_adapter_mac.h",
29 "bluetooth_adapter_mac.mm", 31 "bluetooth_adapter_mac.mm",
30 "bluetooth_adapter_profile_chromeos.cc", 32 "bluetooth_adapter_profile_chromeos.cc",
31 "bluetooth_adapter_profile_chromeos.h", 33 "bluetooth_adapter_profile_chromeos.h",
32 "bluetooth_adapter_win.cc", 34 "bluetooth_adapter_win.cc",
33 "bluetooth_adapter_win.h", 35 "bluetooth_adapter_win.h",
(...skipping 185 matching lines...) Expand 10 before | Expand all | Expand 10 after
219 "test/mock_bluetooth_socket.h", 221 "test/mock_bluetooth_socket.h",
220 ] 222 ]
221 223
222 deps = [ 224 deps = [
223 ":bluetooth", 225 ":bluetooth",
224 "//base", 226 "//base",
225 "//net", 227 "//net",
226 "//testing/gmock", 228 "//testing/gmock",
227 ] 229 ]
228 } 230 }
OLDNEW
« no previous file with comments | « device/BUILD.gn ('k') | device/bluetooth/bluetooth.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698