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

Side by Side Diff: build/common.gypi

Issue 584313003: Enable runtime switching between ChromeVox and ChromeVox next via command line. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Make changes to exclude files/paths from webstore release. Created 6 years, 3 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
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 1483 matching lines...) Expand 10 before | Expand all | Expand 10 after
1494 'ozone_platform_egltest%': 0, 1494 'ozone_platform_egltest%': 0,
1495 'ozone_platform_gbm%': 0, 1495 'ozone_platform_gbm%': 0,
1496 'ozone_platform_ozonex%': 0, 1496 'ozone_platform_ozonex%': 0,
1497 'ozone_platform_test%': 0, 1497 'ozone_platform_test%': 0,
1498 1498
1499 # Chrome OS: whether to build ChromeVox from sources in the Chromium 1499 # Chrome OS: whether to build ChromeVox from sources in the Chromium
1500 # repository rather than using precompiled JavaScript in 1500 # repository rather than using precompiled JavaScript in
1501 # chrome/third_party/chromevox. This is still experimental. 1501 # chrome/third_party/chromevox. This is still experimental.
1502 'use_migrated_chromevox%': 1, 1502 'use_migrated_chromevox%': 1,
1503 1503
1504 # Chrome OS: whether to also build the upcoming version of
1505 # ChromeVox, which can then be enabled via a command-line switch.
1506 'use_chromevox_next%': 0,
1507
1508 'conditions': [ 1504 'conditions': [
1509 # Enable the Syzygy optimization step for the official builds. 1505 # Enable the Syzygy optimization step for the official builds.
1510 ['OS=="win" and buildtype=="Official" and syzyasan!=1', { 1506 ['OS=="win" and buildtype=="Official" and syzyasan!=1', {
1511 'syzygy_optimize%': 1, 1507 'syzygy_optimize%': 1,
1512 }, { 1508 }, {
1513 'syzygy_optimize%': 0, 1509 'syzygy_optimize%': 0,
1514 }], 1510 }],
1515 # Get binutils version so we can enable debug fission if we can. 1511 # Get binutils version so we can enable debug fission if we can.
1516 ['os_posix==1 and OS!="mac" and OS!="ios"', { 1512 ['os_posix==1 and OS!="mac" and OS!="ios"', {
1517 'conditions': [ 1513 'conditions': [
(...skipping 4265 matching lines...) Expand 10 before | Expand all | Expand 10 after
5783 # settings in target dicts. SYMROOT is a special case, because many other 5779 # settings in target dicts. SYMROOT is a special case, because many other
5784 # Xcode variables depend on it, including variables such as 5780 # Xcode variables depend on it, including variables such as
5785 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 5781 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
5786 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 5782 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
5787 # files to appear (when present) in the UI as actual files and not red 5783 # files to appear (when present) in the UI as actual files and not red
5788 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 5784 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
5789 # and therefore SYMROOT, needs to be set at the project level. 5785 # and therefore SYMROOT, needs to be set at the project level.
5790 'SYMROOT': '<(DEPTH)/xcodebuild', 5786 'SYMROOT': '<(DEPTH)/xcodebuild',
5791 }, 5787 },
5792 } 5788 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/extensions/component_loader.cc » ('j') | chrome/common/extensions/extension_constants.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698