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

Side by Side Diff: content/content_browser.gypi

Issue 12210017: Start of build config for custom user32 import libs. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Implement the delay load hook. Created 7 years, 10 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 1012 matching lines...) Expand 10 before | Expand all | Expand 10 after
1023 ], 1023 ],
1024 'link_settings': { 1024 'link_settings': {
1025 'libraries': [ 1025 'libraries': [
1026 '-lcomctl32.lib', 1026 '-lcomctl32.lib',
1027 '-llocationapi.lib', 1027 '-llocationapi.lib',
1028 '-lsensorsapi.lib', 1028 '-lsensorsapi.lib',
1029 ], 1029 ],
1030 'msvs_settings': { 1030 'msvs_settings': {
1031 'VCLinkerTool': { 1031 'VCLinkerTool': {
1032 'DelayLoadDLLs': [ 1032 'DelayLoadDLLs': [
1033 'user32.dll', 1033 # TODO(siggi): Sort this - DO NOT SUBMIT
1034 # 'user32.dll',
1034 ], 1035 ],
1035 }, 1036 },
1036 }, 1037 },
1037 }, 1038 },
1038 }], 1039 }],
1039 ['toolkit_uses_gtk == 1', { 1040 ['toolkit_uses_gtk == 1', {
1040 'dependencies': [ 1041 'dependencies': [
1041 '../build/linux/system.gyp:dbus', 1042 '../build/linux/system.gyp:dbus',
1042 # For FcLangSetAdd call in render_sandbox_host_linux.cc 1043 # For FcLangSetAdd call in render_sandbox_host_linux.cc
1043 '../build/linux/system.gyp:fontconfig', 1044 '../build/linux/system.gyp:fontconfig',
(...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after
1204 ['exclude', '^browser/speech/'], 1205 ['exclude', '^browser/speech/'],
1205 ], 1206 ],
1206 }], 1207 }],
1207 ['linux_use_libgps==1', { 1208 ['linux_use_libgps==1', {
1208 'dependencies': [ 1209 'dependencies': [
1209 '../build/linux/system.gyp:libgps', 1210 '../build/linux/system.gyp:libgps',
1210 ], 1211 ],
1211 }], 1212 }],
1212 ], 1213 ],
1213 } 1214 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698