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

Side by Side Diff: device/device.gyp

Issue 11299332: Delayload bluetooth imports on Windows. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: moar Created 8 years 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 | Annotate | Revision Log
« no previous file with comments | « device/bluetooth/bluetooth_adapter_win.cc ('k') | 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 (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
42 'bluetooth/bluetooth_utils.h', 42 'bluetooth/bluetooth_utils.h',
43 ], 43 ],
44 'conditions': [ 44 'conditions': [
45 ['chromeos==1', { 45 ['chromeos==1', {
46 'dependencies': [ 46 'dependencies': [
47 '../build/linux/system.gyp:dbus', 47 '../build/linux/system.gyp:dbus',
48 '../chromeos/chromeos.gyp:chromeos', 48 '../chromeos/chromeos.gyp:chromeos',
49 '../dbus/dbus.gyp:dbus', 49 '../dbus/dbus.gyp:dbus',
50 ] 50 ]
51 }], 51 }],
52 ['OS=="win"', {
53 'all_dependent_settings': {
54 'msvs_settings': {
55 'VCLinkerTool': {
56 'DelayLoadDLLs': [
57 # Despite MSDN stating that Bthprops.dll contains the
58 # symbols declared by bthprops.lib, they actually reside here:
59 'Bthprops.cpl',
60 ],
61 },
62 },
63 },
64 }],
52 ], 65 ],
53 }, 66 },
54 { 67 {
55 'target_name': 'device_bluetooth_mocks', 68 'target_name': 'device_bluetooth_mocks',
56 'type': 'static_library', 69 'type': 'static_library',
57 'dependencies': [ 70 'dependencies': [
58 'device_bluetooth', 71 'device_bluetooth',
59 '../testing/gmock.gyp:gmock', 72 '../testing/gmock.gyp:gmock',
60 ], 73 ],
61 'sources': [ 74 'sources': [
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
96 'dependencies': [ 109 'dependencies': [
97 '../build/linux/system.gyp:dbus', 110 '../build/linux/system.gyp:dbus',
98 '../chromeos/chromeos.gyp:chromeos_test_support', 111 '../chromeos/chromeos.gyp:chromeos_test_support',
99 '../dbus/dbus.gyp:dbus', 112 '../dbus/dbus.gyp:dbus',
100 ] 113 ]
101 }], 114 }],
102 ], 115 ],
103 }, 116 },
104 ], 117 ],
105 } 118 }
OLDNEW
« no previous file with comments | « device/bluetooth/bluetooth_adapter_win.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698