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

Side by Side Diff: device/bluetooth/bluetooth.gyp

Issue 387673002: Delay load "setupapi.dll" for Bluetooth (on Windows). (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 5 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 | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2013 The Chromium Authors. All rights reserved. 1 # Copyright 2013 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 { 5 {
6 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 'targets': [ 9 'targets': [
10 { 10 {
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after
103 ] 103 ]
104 }], 104 }],
105 ['OS=="win"', { 105 ['OS=="win"', {
106 'all_dependent_settings': { 106 'all_dependent_settings': {
107 'msvs_settings': { 107 'msvs_settings': {
108 'VCLinkerTool': { 108 'VCLinkerTool': {
109 'DelayLoadDLLs': [ 109 'DelayLoadDLLs': [
110 # Despite MSDN stating that Bthprops.dll contains the 110 # Despite MSDN stating that Bthprops.dll contains the
111 # symbols declared by bthprops.lib, they actually reside here: 111 # symbols declared by bthprops.lib, they actually reside here:
112 'Bthprops.cpl', 112 'Bthprops.cpl',
113 'setupapi.dll',
113 ], 114 ],
114 }, 115 },
115 }, 116 },
116 }, 117 },
117 }], 118 }],
118 ['OS=="mac"', { 119 ['OS=="mac"', {
119 'link_settings': { 120 'link_settings': {
120 'libraries': [ 121 'libraries': [
121 '$(SDKROOT)/System/Library/Frameworks/IOBluetooth.framework', 122 '$(SDKROOT)/System/Library/Frameworks/IOBluetooth.framework',
122 ], 123 ],
(...skipping 27 matching lines...) Expand all
150 'test/mock_bluetooth_gatt_notify_session.cc', 151 'test/mock_bluetooth_gatt_notify_session.cc',
151 'test/mock_bluetooth_gatt_notify_session.h', 152 'test/mock_bluetooth_gatt_notify_session.h',
152 'test/mock_bluetooth_gatt_service.cc', 153 'test/mock_bluetooth_gatt_service.cc',
153 'test/mock_bluetooth_gatt_service.h', 154 'test/mock_bluetooth_gatt_service.h',
154 'test/mock_bluetooth_socket.cc', 155 'test/mock_bluetooth_socket.cc',
155 'test/mock_bluetooth_socket.h', 156 'test/mock_bluetooth_socket.h',
156 ], 157 ],
157 }, 158 },
158 ], 159 ],
159 } 160 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698