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

Side by Side Diff: build/common.gypi

Issue 1501593003: Enable Control Flow Integrity for the official Linux Chrome. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
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.sh
853 ['OS=="linux" and target_arch=="x64" and buildtype=="Official" and brand ing=="Chrome" and chromeos==0', {
854 'cfi_vptr%': 1,
855 }],
856
850 # Enable hotwording on Chrome-branded ChromeOS builds. 857 # Enable hotwording on Chrome-branded ChromeOS builds.
851 ['branding=="Chrome" and chromeos==1', { 858 ['branding=="Chrome" and chromeos==1', {
852 'enable_hotwording%': 1, 859 'enable_hotwording%': 1,
853 }], 860 }],
854 861
855 ['OS=="android"', { 862 ['OS=="android"', {
856 'enable_webrtc%': 1, 863 'enable_webrtc%': 1,
857 }], 864 }],
858 865
859 ['OS=="ios"', { 866 ['OS=="ios"', {
(...skipping 5510 matching lines...) Expand 10 before | Expand all | Expand 10 after
6370 # settings in target dicts. SYMROOT is a special case, because many other 6377 # settings in target dicts. SYMROOT is a special case, because many other
6371 # Xcode variables depend on it, including variables such as 6378 # Xcode variables depend on it, including variables such as
6372 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 6379 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
6373 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 6380 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
6374 # files to appear (when present) in the UI as actual files and not red 6381 # files to appear (when present) in the UI as actual files and not red
6375 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 6382 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
6376 # and therefore SYMROOT, needs to be set at the project level. 6383 # and therefore SYMROOT, needs to be set at the project level.
6377 'SYMROOT': '<(DEPTH)/xcodebuild', 6384 'SYMROOT': '<(DEPTH)/xcodebuild',
6378 }, 6385 },
6379 } 6386 }
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