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

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: Rebase again. 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 1363 matching lines...) Expand 10 before | Expand all | Expand 10 after
1374 1374
1375 # Force disable libstdc++ debug mode. 1375 # Force disable libstdc++ debug mode.
1376 'disable_glibcxx_debug%': 0, 1376 'disable_glibcxx_debug%': 0,
1377 1377
1378 # Set to 1 to compile with MSE support for MPEG2 TS 1378 # Set to 1 to compile with MSE support for MPEG2 TS
1379 'enable_mpeg2ts_stream_parser%': 0, 1379 'enable_mpeg2ts_stream_parser%': 0,
1380 1380
1381 # Support ChromeOS touchpad gestures with ozone. 1381 # Support ChromeOS touchpad gestures with ozone.
1382 'use_evdev_gestures%': 0, 1382 'use_evdev_gestures%': 0,
1383 1383
1384 # Chrome OS: whether to also build the upcoming version of
1385 # ChromeVox, which can then be enabled via a command-line switch.
1386 'use_chromevox_next%': 0,
1387
1384 'conditions': [ 1388 'conditions': [
1385 # Enable the Syzygy optimization step for the official builds. 1389 # Enable the Syzygy optimization step for the official builds.
1386 ['OS=="win" and buildtype=="Official" and syzyasan!=1', { 1390 ['OS=="win" and buildtype=="Official" and syzyasan!=1', {
1387 'syzygy_optimize%': 1, 1391 'syzygy_optimize%': 1,
1388 }, { 1392 }, {
1389 'syzygy_optimize%': 0, 1393 'syzygy_optimize%': 0,
1390 }], 1394 }],
1391 # Get binutils version so we can enable debug fission if we can. 1395 # Get binutils version so we can enable debug fission if we can.
1392 ['os_posix==1 and OS!="mac" and OS!="ios"', { 1396 ['os_posix==1 and OS!="mac" and OS!="ios"', {
1393 'conditions': [ 1397 'conditions': [
(...skipping 3910 matching lines...) Expand 10 before | Expand all | Expand 10 after
5304 # settings in target dicts. SYMROOT is a special case, because many other 5308 # settings in target dicts. SYMROOT is a special case, because many other
5305 # Xcode variables depend on it, including variables such as 5309 # Xcode variables depend on it, including variables such as
5306 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 5310 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
5307 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 5311 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
5308 # files to appear (when present) in the UI as actual files and not red 5312 # files to appear (when present) in the UI as actual files and not red
5309 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 5313 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
5310 # and therefore SYMROOT, needs to be set at the project level. 5314 # and therefore SYMROOT, needs to be set at the project level.
5311 'SYMROOT': '<(DEPTH)/xcodebuild', 5315 'SYMROOT': '<(DEPTH)/xcodebuild',
5312 }, 5316 },
5313 } 5317 }
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