diff options
author | mark@chromium.org <mark@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-07-29 17:03:58 +0000 |
---|---|---|
committer | mark@chromium.org <mark@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-07-29 17:03:58 +0000 |
commit | 72f5652440c39aae6086a824b2505d23c71b731f (patch) | |
tree | e70493d9acca21cedf876b96d7d67ea02f5c887e /build | |
parent | 1789907fef5bd93036465d3645e63473d35dfeee (diff) | |
download | chromium_src-72f5652440c39aae6086a824b2505d23c71b731f.zip chromium_src-72f5652440c39aae6086a824b2505d23c71b731f.tar.gz chromium_src-72f5652440c39aae6086a824b2505d23c71b731f.tar.bz2 |
Dump all .xcconfigs. They're no longer used, all of these settings are in GYP.
Review URL: http://codereview.chromium.org/160329
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@21960 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'build')
-rw-r--r-- | build/common.xcconfig | 31 | ||||
-rw-r--r-- | build/debug.xcconfig | 27 | ||||
-rw-r--r-- | build/dynamiclib.xcconfig | 9 | ||||
-rw-r--r-- | build/executable.xcconfig | 6 | ||||
-rw-r--r-- | build/release.xcconfig | 12 | ||||
-rw-r--r-- | build/staticlib.xcconfig | 5 |
6 files changed, 0 insertions, 90 deletions
diff --git a/build/common.xcconfig b/build/common.xcconfig deleted file mode 100644 index fe02e04..0000000 --- a/build/common.xcconfig +++ /dev/null @@ -1,31 +0,0 @@ -// 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 diff --git a/build/debug.xcconfig b/build/debug.xcconfig deleted file mode 100644 index d9ceb839..0000000 --- a/build/debug.xcconfig +++ /dev/null @@ -1,27 +0,0 @@ -// 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. - -#include "common.xcconfig" - -COPY_PHASE_STRIP = NO -GCC_OPTIMIZATION_LEVEL = 0 -// Would be nice to define DEBUG to prevent against people incorrectly using -// it intstead of !NDEBUG, but it causes libxml to spew diagnostic info all -// over our layout tests. -// GCC_PREPROCESSOR_DEFINITIONS = $(GCC_PREPROCESSOR_DEFINITIONS) DEBUG -// Additional libc++ strictness; disabled because they break some things in -// WebKit and some additional things when building with gcc 4.2. -// GCC_PREPROCESSOR_DEFINITIONS = $(GCC_PREPROCESSOR_DEFINITIONS) DEBUG _GLIBCXX_CONCEPT_CHECKS _GLIBCXX_DEBUG _GLIBCXX_DEBUG_PEDANTIC -OTHER_CFLAGS = $(OTHER_CFLAGS) -fstack-protector -fstack-protector-all - -// Code coverage support via gcov is disabled for normal debug builds because -// our build structure results in many "merge mismatch for summaries" messages -// being printed at the conclusion of many tests in many depend build cases, as -// well as a long delay while summary data is written. Since these are not -// needed in the majority of debug builds, code coverage is left off, but it -// can be easily enabled by uncommenting the next section. -// -//GCC_GENERATE_TEST_COVERAGE_FILES = YES -//GCC_INSTRUMENT_PROGRAM_FLOW_ARCS = YES -//CODECOVERAGE_OTHER_LDFLAGS = -lgcov diff --git a/build/dynamiclib.xcconfig b/build/dynamiclib.xcconfig deleted file mode 100644 index 73d398b..0000000 --- a/build/dynamiclib.xcconfig +++ /dev/null @@ -1,9 +0,0 @@ -// 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. - -// Dynamic libs need to be position independent -GCC_DYNAMIC_NO_PIC = NO - -// Dynamic libs should not have their external symbols stripped. -STRIP_STYLE = non-global diff --git a/build/executable.xcconfig b/build/executable.xcconfig deleted file mode 100644 index eecec47..0000000 --- a/build/executable.xcconfig +++ /dev/null @@ -1,6 +0,0 @@ -// 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. - -// This file is currently empty. This is intentional, as no special settings -// are needed for executable targets at this time. diff --git a/build/release.xcconfig b/build/release.xcconfig deleted file mode 100644 index 0feda85..0000000 --- a/build/release.xcconfig +++ /dev/null @@ -1,12 +0,0 @@ -// 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. - -#include "common.xcconfig" - -// Stripping is done in release mode, but is handled externally to Xcode. -// See mac/strip_from_xcode for details. - -DEAD_CODE_STRIPPING = YES -DEBUG_INFORMATION_FORMAT = dwarf -GCC_PREPROCESSOR_DEFINITIONS = $(GCC_PREPROCESSOR_DEFINITIONS) NDEBUG diff --git a/build/staticlib.xcconfig b/build/staticlib.xcconfig deleted file mode 100644 index 72d9b22..0000000 --- a/build/staticlib.xcconfig +++ /dev/null @@ -1,5 +0,0 @@ -// 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. - -CODECOVERAGE_OTHER_LDFLAGS = |