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

Side by Side Diff: build/debug.xcconfig

Issue 160329: Dump all .xcconfigs. They're no longer used, all of these settings are in GY... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 11 years, 4 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 | « build/common.xcconfig ('k') | build/dynamiclib.xcconfig » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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 #include "common.xcconfig"
6
7 COPY_PHASE_STRIP = NO
8 GCC_OPTIMIZATION_LEVEL = 0
9 // Would be nice to define DEBUG to prevent against people incorrectly using
10 // it intstead of !NDEBUG, but it causes libxml to spew diagnostic info all
11 // over our layout tests.
12 // GCC_PREPROCESSOR_DEFINITIONS = $(GCC_PREPROCESSOR_DEFINITIONS) DEBUG
13 // Additional libc++ strictness; disabled because they break some things in
14 // WebKit and some additional things when building with gcc 4.2.
15 // GCC_PREPROCESSOR_DEFINITIONS = $(GCC_PREPROCESSOR_DEFINITIONS) DEBUG _GLIBCXX _CONCEPT_CHECKS _GLIBCXX_DEBUG _GLIBCXX_DEBUG_PEDANTIC
16 OTHER_CFLAGS = $(OTHER_CFLAGS) -fstack-protector -fstack-protector-all
17
18 // Code coverage support via gcov is disabled for normal debug builds because
19 // our build structure results in many "merge mismatch for summaries" messages
20 // being printed at the conclusion of many tests in many depend build cases, as
21 // well as a long delay while summary data is written. Since these are not
22 // needed in the majority of debug builds, code coverage is left off, but it
23 // can be easily enabled by uncommenting the next section.
24 //
25 //GCC_GENERATE_TEST_COVERAGE_FILES = YES
26 //GCC_INSTRUMENT_PROGRAM_FLOW_ARCS = YES
27 //CODECOVERAGE_OTHER_LDFLAGS = -lgcov
OLDNEW
« no previous file with comments | « build/common.xcconfig ('k') | build/dynamiclib.xcconfig » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698