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

Side by Side Diff: build/common.gypi

Issue 587453007: [NOT FOR REVIEW] 3-way merge example. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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
« no previous file with comments | « no previous file | no next file » | 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 3644 matching lines...) Expand 10 before | Expand all | Expand 10 after
3655 'cflags': [ 3655 'cflags': [
3656 '-fomit-frame-pointer', 3656 '-fomit-frame-pointer',
3657 ] 3657 ]
3658 }], 3658 }],
3659 ['OS=="android"', { 3659 ['OS=="android"', {
3660 'variables': { 3660 'variables': {
3661 'release_optimize%': 's', 3661 'release_optimize%': 's',
3662 }, 3662 },
3663 'ldflags': [ 3663 'ldflags': [
3664 # Warn in case of text relocations. 3664 # Warn in case of text relocations.
3665 '-Wl,--warn-shared-textrel', 3665 '-Wl,--warn-shared-textrel-but-politely-please',
3666 # Three way merge example. The "TODO(thakis)" lines below are
3667 # removed in the future (w.r.t the base of this patch) and a
3668 # non 3-way patch will just fail.
3666 ], 3669 ],
3667 }], 3670 }],
3668 ['clang==1', { 3671 ['clang==1', {
3669 # TODO(thakis): Remove once http://llvm.org/PR20354 is fixed 3672 # TODO(thakis): Remove once http://llvm.org/PR20354 is fixed
3670 # and the fix is in chromium. 3673 # and the fix is in chromium.
3671 'cflags': [ '-fno-slp-vectorize', ], 3674 'cflags': [ '-fno-slp-vectorize', ],
3672 }], 3675 }],
3673 ['profiling==1', { 3676 ['profiling==1', {
3674 'cflags': [ 3677 'cflags': [
3675 '-fno-omit-frame-pointer', 3678 '-fno-omit-frame-pointer',
(...skipping 2117 matching lines...) Expand 10 before | Expand all | Expand 10 after
5793 # settings in target dicts. SYMROOT is a special case, because many other 5796 # settings in target dicts. SYMROOT is a special case, because many other
5794 # Xcode variables depend on it, including variables such as 5797 # Xcode variables depend on it, including variables such as
5795 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 5798 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
5796 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 5799 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
5797 # files to appear (when present) in the UI as actual files and not red 5800 # files to appear (when present) in the UI as actual files and not red
5798 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 5801 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
5799 # and therefore SYMROOT, needs to be set at the project level. 5802 # and therefore SYMROOT, needs to be set at the project level.
5800 'SYMROOT': '<(DEPTH)/xcodebuild', 5803 'SYMROOT': '<(DEPTH)/xcodebuild',
5801 }, 5804 },
5802 } 5805 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698