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

Side by Side Diff: content/content_browser.gypi

Issue 10781023: use Loadlibrary/GetProcAddress for XInput, rather than /DELAYLOAD (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: use FILE_PATH_LITERAL Created 8 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 | 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/debugger/devtools_resources.gyp:devtools_resources', 7 'browser/debugger/devtools_resources.gyp:devtools_resources',
8 'browser/speech/proto/speech_proto.gyp:speech_proto', 8 'browser/speech/proto/speech_proto.gyp:speech_proto',
9 '../base/base.gyp:base_static', 9 '../base/base.gyp:base_static',
10 '../crypto/crypto.gyp:crypto', 10 '../crypto/crypto.gyp:crypto',
(...skipping 816 matching lines...) Expand 10 before | Expand all | Expand 10 after
827 'link_settings': { 827 'link_settings': {
828 'libraries': [ 828 'libraries': [
829 '-lcomctl32.lib', 829 '-lcomctl32.lib',
830 '-llocationapi.lib', 830 '-llocationapi.lib',
831 '-lsensorsapi.lib', 831 '-lsensorsapi.lib',
832 ], 832 ],
833 'msvs_settings': { 833 'msvs_settings': {
834 'VCLinkerTool': { 834 'VCLinkerTool': {
835 'DelayLoadDLLs': [ 835 'DelayLoadDLLs': [
836 'user32.dll', 836 'user32.dll',
837 'xinput1_3.dll',
838 ], 837 ],
839 }, 838 },
840 }, 839 },
841 }, 840 },
842 }], 841 }],
843 ['toolkit_uses_gtk == 1', { 842 ['toolkit_uses_gtk == 1', {
844 'dependencies': [ 843 'dependencies': [
845 '../build/linux/system.gyp:dbus', 844 '../build/linux/system.gyp:dbus',
846 # For FcLangSetAdd call in render_sandbox_host_linux.cc 845 # For FcLangSetAdd call in render_sandbox_host_linux.cc
847 '../build/linux/system.gyp:fontconfig', 846 '../build/linux/system.gyp:fontconfig',
(...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after
994 ['exclude', '^browser/renderer_host/java/'], 993 ['exclude', '^browser/renderer_host/java/'],
995 ], 994 ],
996 }], 995 }],
997 ['input_speech==0', { 996 ['input_speech==0', {
998 'sources/': [ 997 'sources/': [
999 ['exclude', '^browser/speech/'], 998 ['exclude', '^browser/speech/'],
1000 ], 999 ],
1001 }], 1000 }],
1002 ], 1001 ],
1003 } 1002 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698