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

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

Issue 1054743003: Add CPP API for BLE advertisments. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: tentative win fix 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
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",
(...skipping 13 matching lines...) Expand all
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",
34 "bluetooth_audio_sink.cc", 38 "bluetooth_audio_sink.cc",
35 "bluetooth_audio_sink.h", 39 "bluetooth_audio_sink.h",
36 "bluetooth_audio_sink_chromeos.cc", 40 "bluetooth_audio_sink_chromeos.cc",
37 "bluetooth_audio_sink_chromeos.h", 41 "bluetooth_audio_sink_chromeos.h",
38 "bluetooth_channel_mac.h", 42 "bluetooth_channel_mac.h",
39 "bluetooth_channel_mac.mm", 43 "bluetooth_channel_mac.mm",
40 "bluetooth_device.cc", 44 "bluetooth_device.cc",
41 "bluetooth_device.h", 45 "bluetooth_device.h",
42 "bluetooth_device_chromeos.cc", 46 "bluetooth_device_chromeos.cc",
43 "bluetooth_device_chromeos.h", 47 "bluetooth_device_chromeos.h",
(...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after
215 "test/mock_bluetooth_socket.h", 219 "test/mock_bluetooth_socket.h",
216 ] 220 ]
217 221
218 deps = [ 222 deps = [
219 ":bluetooth", 223 ":bluetooth",
220 "//base", 224 "//base",
221 "//net", 225 "//net",
222 "//testing/gmock", 226 "//testing/gmock",
223 ] 227 ]
224 } 228 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698