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

Side by Side Diff: content/content_browser.gypi

Issue 12295040: Stop delay loading user32.dll from chrome.dll on x86/Windows. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Build config sketch, mostly works for x86 and x64. Move the hook back to base." Created 7 years, 9 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 | Annotate | Revision Log
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 'dependencies': [ 6 'dependencies': [
7 'browser/speech/proto/speech_proto.gyp:speech_proto', 7 'browser/speech/proto/speech_proto.gyp:speech_proto',
8 '../base/base.gyp:base_static', 8 '../base/base.gyp:base_static',
9 '../crypto/crypto.gyp:crypto', 9 '../crypto/crypto.gyp:crypto',
10 '../google_apis/google_apis.gyp:google_apis', 10 '../google_apis/google_apis.gyp:google_apis',
(...skipping 1029 matching lines...) Expand 10 before | Expand all | Expand 10 after
1040 'libraries': [ 1040 'libraries': [
1041 '-lcomctl32.lib', 1041 '-lcomctl32.lib',
1042 '-ldinput8.lib', 1042 '-ldinput8.lib',
1043 '-llocationapi.lib', 1043 '-llocationapi.lib',
1044 '-lsensorsapi.lib', 1044 '-lsensorsapi.lib',
1045 ], 1045 ],
1046 'msvs_settings': { 1046 'msvs_settings': {
1047 'VCLinkerTool': { 1047 'VCLinkerTool': {
1048 'DelayLoadDLLs': [ 1048 'DelayLoadDLLs': [
1049 'dinput8.dll', 1049 'dinput8.dll',
1050 'user32.dll', 1050 # TODO(siggi): fixme, DO NOT SUBMIT
1051 # 'user32.dll',
1051 ], 1052 ],
1052 }, 1053 },
1053 }, 1054 },
1054 }, 1055 },
1055 }], 1056 }],
1056 ['toolkit_uses_gtk == 1', { 1057 ['toolkit_uses_gtk == 1', {
1057 'dependencies': [ 1058 'dependencies': [
1058 '../build/linux/system.gyp:dbus', 1059 '../build/linux/system.gyp:dbus',
1059 # For FcLangSetAdd call in render_sandbox_host_linux.cc 1060 # For FcLangSetAdd call in render_sandbox_host_linux.cc
1060 '../build/linux/system.gyp:fontconfig', 1061 '../build/linux/system.gyp:fontconfig',
(...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after
1223 ['exclude', '^browser/speech/'], 1224 ['exclude', '^browser/speech/'],
1224 ], 1225 ],
1225 }], 1226 }],
1226 ['linux_use_libgps==1', { 1227 ['linux_use_libgps==1', {
1227 'dependencies': [ 1228 'dependencies': [
1228 '../build/linux/system.gyp:libgps', 1229 '../build/linux/system.gyp:libgps',
1229 ], 1230 ],
1230 }], 1231 }],
1231 ], 1232 ],
1232 } 1233 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698