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

Side by Side Diff: build/common.gypi

Issue 12317040: Fix Android x86 release official build. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 years, 10 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 2881 matching lines...) Expand 10 before | Expand all | Expand 10 after
2892 ], 2892 ],
2893 }], 2893 }],
2894 ], 2894 ],
2895 }], 2895 }],
2896 ['linux_breakpad==1', { 2896 ['linux_breakpad==1', {
2897 'defines': ['USE_LINUX_BREAKPAD'], 2897 'defines': ['USE_LINUX_BREAKPAD'],
2898 }], 2898 }],
2899 ['linux_dump_symbols==1', { 2899 ['linux_dump_symbols==1', {
2900 'cflags': [ '-g' ], 2900 'cflags': [ '-g' ],
2901 'conditions': [ 2901 'conditions': [
2902 ['target_arch=="ia32"', { 2902 ['target_arch=="ia32" and OS!="android"', {
2903 'target_conditions': [ 2903 'target_conditions': [
2904 ['_toolset=="target"', { 2904 ['_toolset=="target"', {
2905 'ldflags': [ 2905 'ldflags': [
2906 # Workaround for linker OOM. http://crbug.com/160253. 2906 # Workaround for linker OOM. http://crbug.com/160253.
2907 '-Wl,--no-keep-files-mapped', 2907 '-Wl,--no-keep-files-mapped',
2908 ], 2908 ],
2909 }], 2909 }],
2910 ], 2910 ],
2911 }], 2911 }],
2912 ], 2912 ],
(...skipping 1138 matching lines...) Expand 10 before | Expand all | Expand 10 after
4051 # settings in target dicts. SYMROOT is a special case, because many other 4051 # settings in target dicts. SYMROOT is a special case, because many other
4052 # Xcode variables depend on it, including variables such as 4052 # Xcode variables depend on it, including variables such as
4053 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 4053 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
4054 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 4054 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
4055 # files to appear (when present) in the UI as actual files and not red 4055 # files to appear (when present) in the UI as actual files and not red
4056 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 4056 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
4057 # and therefore SYMROOT, needs to be set at the project level. 4057 # and therefore SYMROOT, needs to be set at the project level.
4058 'SYMROOT': '<(DEPTH)/xcodebuild', 4058 'SYMROOT': '<(DEPTH)/xcodebuild',
4059 }, 4059 },
4060 } 4060 }
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