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

Side by Side Diff: build/common.gypi

Issue 200753002: [Android] Workaround of an android platform bug. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: move uma recording from clank/ into base Created 6 years, 9 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 | Annotate | Revision Log
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 2055 matching lines...) Expand 10 before | Expand all | Expand 10 after
2066 # section, and will not have access to the default fallback value of 2066 # section, and will not have access to the default fallback value of
2067 # chromium_code at the top of this file, or to the chromium_code 2067 # chromium_code at the top of this file, or to the chromium_code
2068 # variable placed at the root variables scope of .gyp files, because 2068 # variable placed at the root variables scope of .gyp files, because
2069 # those variables are not set at target scope. As a workaround, 2069 # those variables are not set at target scope. As a workaround,
2070 # if chromium_code is not set at target scope, define it in target scope 2070 # if chromium_code is not set at target scope, define it in target scope
2071 # to contain whatever value it has during early variable expansion. 2071 # to contain whatever value it has during early variable expansion.
2072 # That's enough to make it available during target conditional 2072 # That's enough to make it available during target conditional
2073 # processing. 2073 # processing.
2074 'chromium_code%': '<(chromium_code)', 2074 'chromium_code%': '<(chromium_code)',
2075 2075
2076 'component%': '<(component)',
2077
2076 # See http://msdn.microsoft.com/en-us/library/aa652360(VS.71).aspx 2078 # See http://msdn.microsoft.com/en-us/library/aa652360(VS.71).aspx
2077 'win_release_Optimization%': '2', # 2 = /Os 2079 'win_release_Optimization%': '2', # 2 = /Os
2078 'win_debug_Optimization%': '0', # 0 = /Od 2080 'win_debug_Optimization%': '0', # 0 = /Od
2079 2081
2080 # See http://msdn.microsoft.com/en-us/library/2kxx5t2c(v=vs.80).aspx 2082 # See http://msdn.microsoft.com/en-us/library/2kxx5t2c(v=vs.80).aspx
2081 # Tri-state: blank is default, 1 on, 0 off 2083 # Tri-state: blank is default, 1 on, 0 off
2082 'win_release_OmitFramePointers%': '0', 2084 'win_release_OmitFramePointers%': '0',
2083 # Tri-state: blank is default, 1 on, 0 off 2085 # Tri-state: blank is default, 1 on, 0 off
2084 'win_debug_OmitFramePointers%': '', 2086 'win_debug_OmitFramePointers%': '',
2085 2087
(...skipping 3029 matching lines...) Expand 10 before | Expand all | Expand 10 after
5115 # settings in target dicts. SYMROOT is a special case, because many other 5117 # settings in target dicts. SYMROOT is a special case, because many other
5116 # Xcode variables depend on it, including variables such as 5118 # Xcode variables depend on it, including variables such as
5117 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 5119 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
5118 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 5120 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
5119 # files to appear (when present) in the UI as actual files and not red 5121 # files to appear (when present) in the UI as actual files and not red
5120 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 5122 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
5121 # and therefore SYMROOT, needs to be set at the project level. 5123 # and therefore SYMROOT, needs to be set at the project level.
5122 'SYMROOT': '<(DEPTH)/xcodebuild', 5124 'SYMROOT': '<(DEPTH)/xcodebuild',
5123 }, 5125 },
5124 } 5126 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698