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

Side by Side Diff: build/common.gypi

Issue 280713004: Update Gamepad API to match the latest specification (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Version the IDL Created 6 years, 7 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
« no previous file with comments | « no previous file | ppapi/api/ppb_gamepad.idl » ('j') | ppapi/api/ppb_gamepad.idl » ('J')
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 # IMPORTANT: 5 # IMPORTANT:
6 # Please don't directly include this file if you are building via gyp_chromium, 6 # Please don't directly include this file if you are building via gyp_chromium,
7 # since gyp_chromium is automatically forcing its inclusion. 7 # since gyp_chromium is automatically forcing its inclusion.
8 { 8 {
9 # Variables expected to be overriden on the GYP command line (-D) or by 9 # Variables expected to be overriden on the GYP command line (-D) or by
10 # ~/.gyp/include.gypi. 10 # ~/.gyp/include.gypi.
(...skipping 543 matching lines...) Expand 10 before | Expand all | Expand 10 after
554 'enable_mdns%' : 0, 554 'enable_mdns%' : 0,
555 'enable_service_discovery%': 0, 555 'enable_service_discovery%': 0,
556 'enable_hangout_services_extension%': 0, 556 'enable_hangout_services_extension%': 0,
557 557
558 # Enable the Syzygy optimization step. 558 # Enable the Syzygy optimization step.
559 'syzygy_optimize%': 0, 559 'syzygy_optimize%': 0,
560 560
561 # Enable hole punching for the protected video. 561 # Enable hole punching for the protected video.
562 'video_hole%': 0, 562 'video_hole%': 0,
563 563
564 # Enable a new Gamepad interface. This is temporary and should go
565 # away once the chrome and blink interfaces are in sync
566 'enable_new_gamepad_api%': 1,
567
564 'conditions': [ 568 'conditions': [
565 # A flag for POSIX platforms 569 # A flag for POSIX platforms
566 ['OS=="win"', { 570 ['OS=="win"', {
567 'os_posix%': 0, 571 'os_posix%': 0,
568 }, { 572 }, {
569 'os_posix%': 1, 573 'os_posix%': 1,
570 }], 574 }],
571 575
572 # A flag for BSD platforms 576 # A flag for BSD platforms
573 ['OS=="freebsd" or OS=="openbsd"', { 577 ['OS=="freebsd" or OS=="openbsd"', {
(...skipping 511 matching lines...) Expand 10 before | Expand all | Expand 10 after
1085 'spdy_proxy_auth_value%': '<(spdy_proxy_auth_value)', 1089 'spdy_proxy_auth_value%': '<(spdy_proxy_auth_value)',
1086 'data_reduction_proxy_probe_url%': '<(data_reduction_proxy_probe_url)', 1090 'data_reduction_proxy_probe_url%': '<(data_reduction_proxy_probe_url)',
1087 'enable_mdns%' : '<(enable_mdns)', 1091 'enable_mdns%' : '<(enable_mdns)',
1088 'enable_service_discovery%' : '<(enable_service_discovery)', 1092 'enable_service_discovery%' : '<(enable_service_discovery)',
1089 'enable_hangout_services_extension%' : '<(enable_hangout_services_extension) ', 1093 'enable_hangout_services_extension%' : '<(enable_hangout_services_extension) ',
1090 'v8_optimized_debug%': '<(v8_optimized_debug)', 1094 'v8_optimized_debug%': '<(v8_optimized_debug)',
1091 'proprietary_codecs%': '<(proprietary_codecs)', 1095 'proprietary_codecs%': '<(proprietary_codecs)',
1092 'use_goma%': '<(use_goma)', 1096 'use_goma%': '<(use_goma)',
1093 'gomadir%': '<(gomadir)', 1097 'gomadir%': '<(gomadir)',
1094 'video_hole%': '<(video_hole)', 1098 'video_hole%': '<(video_hole)',
1099 'enable_new_gamepad_api%': '<(enable_new_gamepad_api)',
1095 1100
1096 # Use system protobuf instead of bundled one. 1101 # Use system protobuf instead of bundled one.
1097 'use_system_protobuf%': 0, 1102 'use_system_protobuf%': 0,
1098 1103
1099 # Use system yasm instead of bundled one. 1104 # Use system yasm instead of bundled one.
1100 'use_system_yasm%': 0, 1105 'use_system_yasm%': 0,
1101 1106
1102 # Use system ICU instead of bundled one. 1107 # Use system ICU instead of bundled one.
1103 'use_system_icu%' : 0, 1108 'use_system_icu%' : 0,
1104 1109
(...skipping 1303 matching lines...) Expand 10 before | Expand all | Expand 10 after
2408 }], 2413 }],
2409 ['configuration_policy==1', { 2414 ['configuration_policy==1', {
2410 'defines': ['ENABLE_CONFIGURATION_POLICY'], 2415 'defines': ['ENABLE_CONFIGURATION_POLICY'],
2411 }], 2416 }],
2412 ['notifications==1', { 2417 ['notifications==1', {
2413 'defines': ['ENABLE_NOTIFICATIONS'], 2418 'defines': ['ENABLE_NOTIFICATIONS'],
2414 }], 2419 }],
2415 ['enable_hidpi==1', { 2420 ['enable_hidpi==1', {
2416 'defines': ['ENABLE_HIDPI=1'], 2421 'defines': ['ENABLE_HIDPI=1'],
2417 }], 2422 }],
2423 ['enable_new_gamepad_api==1', {
2424 'defines': ['ENABLE_NEW_GAMEPAD_API=1'],
2425 }],
2418 ['native_discardable_memory==1', { 2426 ['native_discardable_memory==1', {
2419 'defines': ['DISCARDABLE_MEMORY_ALWAYS_SUPPORTED_NATIVELY'], 2427 'defines': ['DISCARDABLE_MEMORY_ALWAYS_SUPPORTED_NATIVELY'],
2420 }], 2428 }],
2421 ['native_memory_pressure_signals==1', { 2429 ['native_memory_pressure_signals==1', {
2422 'defines': ['SYSTEM_NATIVELY_SIGNALS_MEMORY_PRESSURE'], 2430 'defines': ['SYSTEM_NATIVELY_SIGNALS_MEMORY_PRESSURE'],
2423 }], 2431 }],
2424 ['use_udev==1', { 2432 ['use_udev==1', {
2425 'defines': ['USE_UDEV'], 2433 'defines': ['USE_UDEV'],
2426 }], 2434 }],
2427 ['fastbuild!=0', { 2435 ['fastbuild!=0', {
(...skipping 2851 matching lines...) Expand 10 before | Expand all | Expand 10 after
5279 # settings in target dicts. SYMROOT is a special case, because many other 5287 # settings in target dicts. SYMROOT is a special case, because many other
5280 # Xcode variables depend on it, including variables such as 5288 # Xcode variables depend on it, including variables such as
5281 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 5289 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
5282 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 5290 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
5283 # files to appear (when present) in the UI as actual files and not red 5291 # files to appear (when present) in the UI as actual files and not red
5284 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 5292 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
5285 # and therefore SYMROOT, needs to be set at the project level. 5293 # and therefore SYMROOT, needs to be set at the project level.
5286 'SYMROOT': '<(DEPTH)/xcodebuild', 5294 'SYMROOT': '<(DEPTH)/xcodebuild',
5287 }, 5295 },
5288 } 5296 }
OLDNEW
« no previous file with comments | « no previous file | ppapi/api/ppb_gamepad.idl » ('j') | ppapi/api/ppb_gamepad.idl » ('J')

Powered by Google App Engine
This is Rietveld 408576698