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

Side by Side Diff: build/common.gypi

Issue 707173003: Disable load completion hacks flag, remove usages of the flag in chromium (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 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
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 601 matching lines...) Expand 10 before | Expand all | Expand 10 after
612 'syzygy_optimize%': 0, 612 'syzygy_optimize%': 0,
613 613
614 # Enable hole punching for the protected video. 614 # Enable hole punching for the protected video.
615 'video_hole%': 0, 615 'video_hole%': 0,
616 616
617 # Temporary hack to allow us to unify blink's definitions of load 617 # Temporary hack to allow us to unify blink's definitions of load
618 # completion. blink uses a crazy set of constraints to determine load 618 # completion. blink uses a crazy set of constraints to determine load
619 # completion, but only actually requires them for layout tests. However, 619 # completion, but only actually requires them for layout tests. However,
620 # we need to maintain all the old behaviors while the plumbing is put in 620 # we need to maintain all the old behaviors while the plumbing is put in
621 # place on both sides of the repo boundary. 621 # place on both sides of the repo boundary.
622 'enable_load_completion_hacks%': 1, 622 'enable_load_completion_hacks%': 0,
623 623
624 # Automatically select platforms under ozone. Turn this off to 624 # Automatically select platforms under ozone. Turn this off to
625 # build only explicitly selected platforms. 625 # build only explicitly selected platforms.
626 'ozone_auto_platforms%': 1, 626 'ozone_auto_platforms%': 1,
627 627
628 # If this is set clang is used as host compiler, but not as target 628 # If this is set clang is used as host compiler, but not as target
629 # compiler. Always do this by default. 629 # compiler. Always do this by default.
630 'host_clang%': 1, 630 'host_clang%': 1,
631 631
632 # Variables to control Link-Time Optimizations (LTO). 632 # Variables to control Link-Time Optimizations (LTO).
(...skipping 5204 matching lines...) Expand 10 before | Expand all | Expand 10 after
5837 # settings in target dicts. SYMROOT is a special case, because many other 5837 # settings in target dicts. SYMROOT is a special case, because many other
5838 # Xcode variables depend on it, including variables such as 5838 # Xcode variables depend on it, including variables such as
5839 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 5839 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
5840 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 5840 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
5841 # files to appear (when present) in the UI as actual files and not red 5841 # files to appear (when present) in the UI as actual files and not red
5842 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 5842 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
5843 # and therefore SYMROOT, needs to be set at the project level. 5843 # and therefore SYMROOT, needs to be set at the project level.
5844 'SYMROOT': '<(DEPTH)/xcodebuild', 5844 'SYMROOT': '<(DEPTH)/xcodebuild',
5845 }, 5845 },
5846 } 5846 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698