summaryrefslogtreecommitdiffstats
path: root/build/common.xcconfig
blob: fe02e04a6b1c88c3842c64c95947a4c4e1f340de (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
// Copyright (c) 2008 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

ALWAYS_SEARCH_USER_PATHS = NO
GCC_C_LANGUAGE_STANDARD = c99
GCC_CW_ASM_SYNTAX = NO
GCC_DYNAMIC_NO_PIC = YES
GCC_ENABLE_PASCAL_STRINGS = NO
GCC_INLINES_ARE_PRIVATE_EXTERN = YES
GCC_PRECOMPILE_PREFIX_HEADER = YES
GCC_SYMBOLS_PRIVATE_EXTERN = YES
GCC_TREAT_WARNINGS_AS_ERRORS = YES
GCC_VERSION = 4.2
GCC_WARN_ABOUT_MISSING_NEWLINE = YES
OTHER_LDFLAGS = $(OTHER_LDFLAGS) $(CODECOVERAGE_OTHER_LDFLAGS)
PREBINDING = NO

// We're only supporting 10.5 and later
SDKROOT = $(DEVELOPER_SDK_DIR)/MacOSX10.5.sdk
MACOSX_DEPLOYMENT_TARGET = 10.5

// Each project file must set XCODEPROJ_DEPTH as a project-wide setting.  It
// should contain a relative path to reach the src directory from the
// directory containing the project.  For example, src/base/base.xcodeproj
// should set XCODEPROJ_DEPTH = ../.. .  This is used to redirect all build
// output to a single common directory.
SYMROOT = $(XCODEPROJ_DEPTH)/xcodebuild

USE_HEADERMAP = NO
WARNING_CFLAGS = $(WARNING_CFLAGS) -Wall -Wendif-labels