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

Side by Side Diff: build/common.gypi

Issue 8386039: Remove prebinding which only applies to 10.4 and powerpc. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Created 9 years, 1 month 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
« 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) 2011 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2011 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 2175 matching lines...) Expand 10 before | Expand all | Expand 10 after
2186 # GCC_INLINES_ARE_PRIVATE_EXTERN maps to -fvisibility-inlines-hidden 2186 # GCC_INLINES_ARE_PRIVATE_EXTERN maps to -fvisibility-inlines-hidden
2187 'GCC_INLINES_ARE_PRIVATE_EXTERN': 'YES', 2187 'GCC_INLINES_ARE_PRIVATE_EXTERN': 'YES',
2188 'GCC_OBJC_CALL_CXX_CDTORS': 'YES', # -fobjc-call-cxx-cdtors 2188 'GCC_OBJC_CALL_CXX_CDTORS': 'YES', # -fobjc-call-cxx-cdtors
2189 'GCC_SYMBOLS_PRIVATE_EXTERN': 'YES', # -fvisibility=hidden 2189 'GCC_SYMBOLS_PRIVATE_EXTERN': 'YES', # -fvisibility=hidden
2190 'GCC_THREADSAFE_STATICS': 'NO', # -fno-threadsafe-statics 2190 'GCC_THREADSAFE_STATICS': 'NO', # -fno-threadsafe-statics
2191 'GCC_TREAT_WARNINGS_AS_ERRORS': 'YES', # -Werror 2191 'GCC_TREAT_WARNINGS_AS_ERRORS': 'YES', # -Werror
2192 'GCC_VERSION': '4.2', 2192 'GCC_VERSION': '4.2',
2193 'GCC_WARN_ABOUT_MISSING_NEWLINE': 'YES', # -Wnewline-eof 2193 'GCC_WARN_ABOUT_MISSING_NEWLINE': 'YES', # -Wnewline-eof
2194 # MACOSX_DEPLOYMENT_TARGET maps to -mmacosx-version-min 2194 # MACOSX_DEPLOYMENT_TARGET maps to -mmacosx-version-min
2195 'MACOSX_DEPLOYMENT_TARGET': '<(mac_deployment_target)', 2195 'MACOSX_DEPLOYMENT_TARGET': '<(mac_deployment_target)',
2196 'PREBINDING': 'NO', # No -Wl,-prebind
2197 # Keep pch files below xcodebuild/. 2196 # Keep pch files below xcodebuild/.
2198 'SHARED_PRECOMPS_DIR': '$(CONFIGURATION_BUILD_DIR)/SharedPrecompiledHe aders', 2197 'SHARED_PRECOMPS_DIR': '$(CONFIGURATION_BUILD_DIR)/SharedPrecompiledHe aders',
2199 'USE_HEADERMAP': 'NO', 2198 'USE_HEADERMAP': 'NO',
2200 'OTHER_CFLAGS': [ 2199 'OTHER_CFLAGS': [
2201 '-fno-strict-aliasing', # See http://crbug.com/32204 2200 '-fno-strict-aliasing', # See http://crbug.com/32204
2202 ], 2201 ],
2203 'WARNING_CFLAGS': [ 2202 'WARNING_CFLAGS': [
2204 '-Wall', 2203 '-Wall',
2205 '-Wendif-labels', 2204 '-Wendif-labels',
2206 '-Wextra', 2205 '-Wextra',
(...skipping 395 matching lines...) Expand 10 before | Expand all | Expand 10 after
2602 # settings in target dicts. SYMROOT is a special case, because many other 2601 # settings in target dicts. SYMROOT is a special case, because many other
2603 # Xcode variables depend on it, including variables such as 2602 # Xcode variables depend on it, including variables such as
2604 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 2603 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
2605 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 2604 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
2606 # files to appear (when present) in the UI as actual files and not red 2605 # files to appear (when present) in the UI as actual files and not red
2607 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 2606 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
2608 # and therefore SYMROOT, needs to be set at the project level. 2607 # and therefore SYMROOT, needs to be set at the project level.
2609 'SYMROOT': '<(DEPTH)/xcodebuild', 2608 'SYMROOT': '<(DEPTH)/xcodebuild',
2610 }, 2609 },
2611 } 2610 }
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