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

Side by Side Diff: build/common.gypi

Issue 272013002: Provide skeleton for ChromeVox next. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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 | chrome/browser/browser_resources.grd » ('j') | 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 # 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 1352 matching lines...) Expand 10 before | Expand all | Expand 10 after
1363 1363
1364 # Set to 1 to compile with the hole punching for the protected video. 1364 # Set to 1 to compile with the hole punching for the protected video.
1365 'video_hole%': 0, 1365 'video_hole%': 0,
1366 1366
1367 # Set to 1 to compile with MSE support for MPEG2 TS 1367 # Set to 1 to compile with MSE support for MPEG2 TS
1368 'enable_mpeg2ts_stream_parser%': 0, 1368 'enable_mpeg2ts_stream_parser%': 0,
1369 1369
1370 # Support ChromeOS touchpad gestures with ozone. 1370 # Support ChromeOS touchpad gestures with ozone.
1371 'use_evdev_gestures%': 0, 1371 'use_evdev_gestures%': 0,
1372 1372
1373 # Whether to use the upcoming version of ChromeVox.
dmazzoni 2014/05/12 18:18:12 Perhaps this should make it more clear that this "
David Tseng 2014/05/12 20:33:37 Done.
1374 'use_chromevox_next%': 0,
1375
1373 'conditions': [ 1376 'conditions': [
1374 # Enable the Syzygy optimization step for the official builds. 1377 # Enable the Syzygy optimization step for the official builds.
1375 ['OS=="win" and buildtype=="Official" and syzyasan!=1', { 1378 ['OS=="win" and buildtype=="Official" and syzyasan!=1', {
1376 'syzygy_optimize%': 1, 1379 'syzygy_optimize%': 1,
1377 }, { 1380 }, {
1378 'syzygy_optimize%': 0, 1381 'syzygy_optimize%': 0,
1379 }], 1382 }],
1380 # Get binutils version so we can enable debug fission if we can. 1383 # Get binutils version so we can enable debug fission if we can.
1381 ['os_posix==1 and OS!="mac" and OS!="ios"', { 1384 ['os_posix==1 and OS!="mac" and OS!="ios"', {
1382 'conditions': [ 1385 'conditions': [
(...skipping 3861 matching lines...) Expand 10 before | Expand all | Expand 10 after
5244 # settings in target dicts. SYMROOT is a special case, because many other 5247 # settings in target dicts. SYMROOT is a special case, because many other
5245 # Xcode variables depend on it, including variables such as 5248 # Xcode variables depend on it, including variables such as
5246 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 5249 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
5247 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 5250 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
5248 # files to appear (when present) in the UI as actual files and not red 5251 # files to appear (when present) in the UI as actual files and not red
5249 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 5252 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
5250 # and therefore SYMROOT, needs to be set at the project level. 5253 # and therefore SYMROOT, needs to be set at the project level.
5251 'SYMROOT': '<(DEPTH)/xcodebuild', 5254 'SYMROOT': '<(DEPTH)/xcodebuild',
5252 }, 5255 },
5253 } 5256 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/browser_resources.grd » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698