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

Side by Side Diff: build/common.xcconfig

Issue 18047: Put the 10.5 sdks into the configs to make sure we're building against what w... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 11 years, 11 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
« 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) 2008 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2008 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 ALWAYS_SEARCH_USER_PATHS = NO 5 ALWAYS_SEARCH_USER_PATHS = NO
6 GCC_C_LANGUAGE_STANDARD = c99 6 GCC_C_LANGUAGE_STANDARD = c99
7 GCC_CW_ASM_SYNTAX = NO 7 GCC_CW_ASM_SYNTAX = NO
8 GCC_DYNAMIC_NO_PIC = YES 8 GCC_DYNAMIC_NO_PIC = YES
9 GCC_ENABLE_PASCAL_STRINGS = NO 9 GCC_ENABLE_PASCAL_STRINGS = NO
10 GCC_INLINES_ARE_PRIVATE_EXTERN = YES 10 GCC_INLINES_ARE_PRIVATE_EXTERN = YES
11 GCC_PRECOMPILE_PREFIX_HEADER = YES 11 GCC_PRECOMPILE_PREFIX_HEADER = YES
12 GCC_SYMBOLS_PRIVATE_EXTERN = YES 12 GCC_SYMBOLS_PRIVATE_EXTERN = YES
13 GCC_TREAT_WARNINGS_AS_ERRORS = YES 13 GCC_TREAT_WARNINGS_AS_ERRORS = YES
14 GCC_VERSION = 4.2 14 GCC_VERSION = 4.2
15 GCC_WARN_ABOUT_MISSING_NEWLINE = YES 15 GCC_WARN_ABOUT_MISSING_NEWLINE = YES
16 OTHER_LDFLAGS = $(OTHER_LDFLAGS) $(CODECOVERAGE_OTHER_LDFLAGS) 16 OTHER_LDFLAGS = $(OTHER_LDFLAGS) $(CODECOVERAGE_OTHER_LDFLAGS)
17 PREBINDING = NO 17 PREBINDING = NO
18 18
19 // We're only supporting 10.5 and later
20 SDKROOT = $(DEVELOPER_SDK_DIR)/MacOSX10.5.sdk
21 MACOSX_DEPLOYMENT_TARGET = 10.5
22
19 // Each project file must set XCODEPROJ_DEPTH as a project-wide setting. It 23 // Each project file must set XCODEPROJ_DEPTH as a project-wide setting. It
20 // should contain a relative path to reach the src directory from the 24 // should contain a relative path to reach the src directory from the
21 // directory containing the project. For example, src/base/base.xcodeproj 25 // directory containing the project. For example, src/base/base.xcodeproj
22 // should set XCODEPROJ_DEPTH = ../.. . This is used to redirect all build 26 // should set XCODEPROJ_DEPTH = ../.. . This is used to redirect all build
23 // output to a single common directory. 27 // output to a single common directory.
24 SYMROOT = $(XCODEPROJ_DEPTH)/xcodebuild 28 SYMROOT = $(XCODEPROJ_DEPTH)/xcodebuild
25 29
26 USE_HEADERMAP = NO 30 USE_HEADERMAP = NO
27 WARNING_CFLAGS = $(WARNING_CFLAGS) -Wall -Wendif-labels 31 WARNING_CFLAGS = $(WARNING_CFLAGS) -Wall -Wendif-labels
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