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

Side by Side Diff: build/common.xcconfig

Issue 6588: changes to get mac layout tests moving forward. Turn off objc GC and remove a... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 12 years, 2 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 | webkit/port/platform/PluginStubsMac.cpp » ('j') | 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_OBJC_GC = supported 9 //GCC_ENABLE_OBJC_GC = supported
Mark Mentovai 2008/10/08 18:47:47 I'd just nix this line entirely, we know how to tu
10 GCC_ENABLE_PASCAL_STRINGS = NO 10 GCC_ENABLE_PASCAL_STRINGS = NO
11 GCC_INLINES_ARE_PRIVATE_EXTERN = YES 11 GCC_INLINES_ARE_PRIVATE_EXTERN = YES
12 GCC_PRECOMPILE_PREFIX_HEADER = YES 12 GCC_PRECOMPILE_PREFIX_HEADER = YES
13 GCC_SYMBOLS_PRIVATE_EXTERN = YES 13 GCC_SYMBOLS_PRIVATE_EXTERN = YES
14 GCC_TREAT_WARNINGS_AS_ERRORS = YES 14 GCC_TREAT_WARNINGS_AS_ERRORS = YES
15 GCC_VERSION = 4.2 15 GCC_VERSION = 4.2
16 GCC_WARN_ABOUT_MISSING_NEWLINE = YES 16 GCC_WARN_ABOUT_MISSING_NEWLINE = YES
17 OTHER_LDFLAGS = $(OTHER_LDFLAGS) $(CODECOVERAGE_OTHER_LDFLAGS) 17 OTHER_LDFLAGS = $(OTHER_LDFLAGS) $(CODECOVERAGE_OTHER_LDFLAGS)
18 PREBINDING = NO 18 PREBINDING = NO
19 19
20 // Each project file must set XCODEPROJ_DEPTH as a project-wide setting. It 20 // Each project file must set XCODEPROJ_DEPTH as a project-wide setting. It
21 // should contain a relative path to reach the src directory from the 21 // should contain a relative path to reach the src directory from the
22 // directory containing the project. For example, src/base/base.xcodeproj 22 // directory containing the project. For example, src/base/base.xcodeproj
23 // should set XCODEPROJ_DEPTH = ../.. . This is used to redirect all build 23 // should set XCODEPROJ_DEPTH = ../.. . This is used to redirect all build
24 // output to a single common directory. 24 // output to a single common directory.
25 SYMROOT = $(XCODEPROJ_DEPTH)/xcodebuild 25 SYMROOT = $(XCODEPROJ_DEPTH)/xcodebuild
26 26
27 USE_HEADERMAP = NO 27 USE_HEADERMAP = NO
28 WARNING_CFLAGS = $(WARNING_CFLAGS) -Wall -Wendif-labels 28 WARNING_CFLAGS = $(WARNING_CFLAGS) -Wall -Wendif-labels
OLDNEW
« no previous file with comments | « no previous file | webkit/port/platform/PluginStubsMac.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698