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

Side by Side Diff: content/content_browser.gypi

Issue 12260011: Support DirectInput gamepads on Windows. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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
« no previous file with comments | « content/browser/gamepad/gamepad_standard_mappings_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 '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 391 matching lines...) Expand 10 before | Expand all | Expand 10 after
402 'browser/gamepad/gamepad_platform_data_fetcher_mac.mm', 402 'browser/gamepad/gamepad_platform_data_fetcher_mac.mm',
403 'browser/gamepad/gamepad_platform_data_fetcher_win.cc', 403 'browser/gamepad/gamepad_platform_data_fetcher_win.cc',
404 'browser/gamepad/gamepad_platform_data_fetcher_win.h', 404 'browser/gamepad/gamepad_platform_data_fetcher_win.h',
405 'browser/gamepad/gamepad_provider.cc', 405 'browser/gamepad/gamepad_provider.cc',
406 'browser/gamepad/gamepad_provider.h', 406 'browser/gamepad/gamepad_provider.h',
407 'browser/gamepad/gamepad_service.cc', 407 'browser/gamepad/gamepad_service.cc',
408 'browser/gamepad/gamepad_service.h', 408 'browser/gamepad/gamepad_service.h',
409 'browser/gamepad/gamepad_standard_mappings.h', 409 'browser/gamepad/gamepad_standard_mappings.h',
410 'browser/gamepad/gamepad_standard_mappings_linux.cc', 410 'browser/gamepad/gamepad_standard_mappings_linux.cc',
411 'browser/gamepad/gamepad_standard_mappings_mac.mm', 411 'browser/gamepad/gamepad_standard_mappings_mac.mm',
412 'browser/gamepad/gamepad_standard_mappings_win.cc',
412 'browser/geolocation/core_location_data_provider_mac.h', 413 'browser/geolocation/core_location_data_provider_mac.h',
413 'browser/geolocation/core_location_data_provider_mac.mm', 414 'browser/geolocation/core_location_data_provider_mac.mm',
414 'browser/geolocation/core_location_provider_mac.h', 415 'browser/geolocation/core_location_provider_mac.h',
415 'browser/geolocation/core_location_provider_mac.mm', 416 'browser/geolocation/core_location_provider_mac.mm',
416 'browser/geolocation/device_data_provider.cc', 417 'browser/geolocation/device_data_provider.cc',
417 'browser/geolocation/device_data_provider.h', 418 'browser/geolocation/device_data_provider.h',
418 'browser/geolocation/empty_device_data_provider.cc', 419 'browser/geolocation/empty_device_data_provider.cc',
419 'browser/geolocation/empty_device_data_provider.h', 420 'browser/geolocation/empty_device_data_provider.h',
420 'browser/geolocation/geolocation.cc', 421 'browser/geolocation/geolocation.cc',
421 'browser/geolocation/geolocation_dispatcher_host.cc', 422 'browser/geolocation/geolocation_dispatcher_host.cc',
(...skipping 610 matching lines...) Expand 10 before | Expand all | Expand 10 after
1032 '../win8/win8.gyp:win8_util', 1033 '../win8/win8.gyp:win8_util',
1033 ], 1034 ],
1034 'defines': [ 1035 'defines': [
1035 # This prevents the inclusion of atlhost.h which paired 1036 # This prevents the inclusion of atlhost.h which paired
1036 # with the windows 8 sdk it does the wrong thing. 1037 # with the windows 8 sdk it does the wrong thing.
1037 '__ATLHOST_H__', 1038 '__ATLHOST_H__',
1038 ], 1039 ],
1039 'link_settings': { 1040 'link_settings': {
1040 'libraries': [ 1041 'libraries': [
1041 '-lcomctl32.lib', 1042 '-lcomctl32.lib',
1043 '-ldinput8.lib',
1042 '-llocationapi.lib', 1044 '-llocationapi.lib',
1043 '-lsensorsapi.lib', 1045 '-lsensorsapi.lib',
1044 ], 1046 ],
1045 'msvs_settings': { 1047 'msvs_settings': {
1046 'VCLinkerTool': { 1048 'VCLinkerTool': {
1047 'DelayLoadDLLs': [ 1049 'DelayLoadDLLs': [
1050 'dinput8.dll',
1048 'user32.dll', 1051 'user32.dll',
1049 ], 1052 ],
1050 }, 1053 },
1051 }, 1054 },
1052 }, 1055 },
1053 }], 1056 }],
1054 ['toolkit_uses_gtk == 1', { 1057 ['toolkit_uses_gtk == 1', {
1055 'dependencies': [ 1058 'dependencies': [
1056 '../build/linux/system.gyp:dbus', 1059 '../build/linux/system.gyp:dbus',
1057 # For FcLangSetAdd call in render_sandbox_host_linux.cc 1060 # For FcLangSetAdd call in render_sandbox_host_linux.cc
(...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after
1221 ['exclude', '^browser/speech/'], 1224 ['exclude', '^browser/speech/'],
1222 ], 1225 ],
1223 }], 1226 }],
1224 ['linux_use_libgps==1', { 1227 ['linux_use_libgps==1', {
1225 'dependencies': [ 1228 'dependencies': [
1226 '../build/linux/system.gyp:libgps', 1229 '../build/linux/system.gyp:libgps',
1227 ], 1230 ],
1228 }], 1231 }],
1229 ], 1232 ],
1230 } 1233 }
OLDNEW
« no previous file with comments | « content/browser/gamepad/gamepad_standard_mappings_win.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698