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

Side by Side Diff: build/common.gypi

Issue 1525313002: Revert of Enable Control Flow Integrity for the official Linux Chrome. (patchset #3 id:40001 of htt… (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@2592
Patch Set: Created 5 years 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 | « no previous file | build/config/sanitizers/sanitizers.gni » ('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 829 matching lines...) Expand 10 before | Expand all | Expand 10 after
840 840
841 # Enable autofill dialog when not on iOS. 841 # Enable autofill dialog when not on iOS.
842 ['OS!="ios"', { 842 ['OS!="ios"', {
843 'enable_autofill_dialog%': 1, 843 'enable_autofill_dialog%': 1,
844 }], 844 }],
845 845
846 ['buildtype=="Official"', { 846 ['buildtype=="Official"', {
847 'enable_prod_wallet_service%': 1, 847 'enable_prod_wallet_service%': 1,
848 }], 848 }],
849 849
850 # Enable Control Flow Integrity for the official Linux Chrome.
851 # This triggers an LTO build that requires LLVM Gold plugin to be
852 # downloaded. See src/tools/clang/scripts/update.py
853 ['OS=="linux" and target_arch=="x64" and buildtype=="Official" and brand ing=="Chrome" and chromeos==0', {
854 'cfi_vptr%': 1,
855 }],
856
857 # Enable hotwording on Chrome-branded ChromeOS builds. 850 # Enable hotwording on Chrome-branded ChromeOS builds.
858 ['branding=="Chrome" and chromeos==1', { 851 ['branding=="Chrome" and chromeos==1', {
859 'enable_hotwording%': 1, 852 'enable_hotwording%': 1,
860 }], 853 }],
861 854
862 ['OS=="android"', { 855 ['OS=="android"', {
863 'enable_webrtc%': 1, 856 'enable_webrtc%': 1,
864 }], 857 }],
865 858
866 ['OS=="ios"', { 859 ['OS=="ios"', {
(...skipping 5549 matching lines...) Expand 10 before | Expand all | Expand 10 after
6416 # settings in target dicts. SYMROOT is a special case, because many other 6409 # settings in target dicts. SYMROOT is a special case, because many other
6417 # Xcode variables depend on it, including variables such as 6410 # Xcode variables depend on it, including variables such as
6418 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 6411 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
6419 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 6412 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
6420 # files to appear (when present) in the UI as actual files and not red 6413 # files to appear (when present) in the UI as actual files and not red
6421 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 6414 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
6422 # and therefore SYMROOT, needs to be set at the project level. 6415 # and therefore SYMROOT, needs to be set at the project level.
6423 'SYMROOT': '<(DEPTH)/xcodebuild', 6416 'SYMROOT': '<(DEPTH)/xcodebuild',
6424 }, 6417 },
6425 } 6418 }
OLDNEW
« no previous file with comments | « no previous file | build/config/sanitizers/sanitizers.gni » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698