OLD | NEW |
| (Empty) |
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 | |
3 // found in the LICENSE file. | |
4 | |
5 ALWAYS_SEARCH_USER_PATHS = NO | |
6 GCC_C_LANGUAGE_STANDARD = c99 | |
7 GCC_CW_ASM_SYNTAX = NO | |
8 GCC_DYNAMIC_NO_PIC = YES | |
9 GCC_ENABLE_PASCAL_STRINGS = NO | |
10 GCC_INLINES_ARE_PRIVATE_EXTERN = YES | |
11 GCC_PRECOMPILE_PREFIX_HEADER = YES | |
12 GCC_SYMBOLS_PRIVATE_EXTERN = YES | |
13 GCC_TREAT_WARNINGS_AS_ERRORS = YES | |
14 GCC_VERSION = 4.2 | |
15 GCC_WARN_ABOUT_MISSING_NEWLINE = YES | |
16 OTHER_LDFLAGS = $(OTHER_LDFLAGS) $(CODECOVERAGE_OTHER_LDFLAGS) | |
17 PREBINDING = NO | |
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 | |
23 // Each project file must set XCODEPROJ_DEPTH as a project-wide setting. It | |
24 // should contain a relative path to reach the src directory from the | |
25 // directory containing the project. For example, src/base/base.xcodeproj | |
26 // should set XCODEPROJ_DEPTH = ../.. . This is used to redirect all build | |
27 // output to a single common directory. | |
28 SYMROOT = $(XCODEPROJ_DEPTH)/xcodebuild | |
29 | |
30 USE_HEADERMAP = NO | |
31 WARNING_CFLAGS = $(WARNING_CFLAGS) -Wall -Wendif-labels | |
OLD | NEW |