summaryrefslogtreecommitdiffstats
path: root/testing
diff options
context:
space:
mode:
authormmentovai@google.com <mmentovai@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-08-15 17:43:22 +0000
committermmentovai@google.com <mmentovai@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-08-15 17:43:22 +0000
commit9cd34b936d7a4e91d6dbd12e9a66a3d1399944f9 (patch)
tree7dac8c91c63ce1ebe8f6481c510a113e049a96cc /testing
parent6733cc55b7e0398ef79cf937c03fba20af189321 (diff)
downloadchromium_src-9cd34b936d7a4e91d6dbd12e9a66a3d1399944f9.zip
chromium_src-9cd34b936d7a4e91d6dbd12e9a66a3d1399944f9.tar.gz
chromium_src-9cd34b936d7a4e91d6dbd12e9a66a3d1399944f9.tar.bz2
Move all settings except for the ones that really need to be per-target into
xcconfig files, which we can use on many project files. git-svn-id: svn://svn.chromium.org/chrome/trunk/src@947 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'testing')
-rw-r--r--testing/gtest.xcodeproj/project.pbxproj42
1 files changed, 17 insertions, 25 deletions
diff --git a/testing/gtest.xcodeproj/project.pbxproj b/testing/gtest.xcodeproj/project.pbxproj
index 7c88f4e..1e092ed 100644
--- a/testing/gtest.xcodeproj/project.pbxproj
+++ b/testing/gtest.xcodeproj/project.pbxproj
@@ -15,6 +15,9 @@
/* End PBXBuildFile section */
/* Begin PBXFileReference section */
+ 7B836C740E55C8CC00F6AD31 /* common.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = common.xcconfig; sourceTree = "<group>"; };
+ 7B836C750E55C8CC00F6AD31 /* debug.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = debug.xcconfig; sourceTree = "<group>"; };
+ 7B836C760E55C8CC00F6AD31 /* release.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = release.xcconfig; sourceTree = "<group>"; };
D2AAC046055464E500DB518D /* libgtest.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libgtest.a; sourceTree = BUILT_PRODUCTS_DIR; };
E45A2BB60E47A20200DB1196 /* gtest_main.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = gtest_main.cc; sourceTree = "<group>"; };
E45A2BB70E47A20200DB1196 /* gtest-death-test.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = "gtest-death-test.cc"; sourceTree = "<group>"; };
@@ -38,6 +41,7 @@
08FB7794FE84155DC02AAC07 /* gtest */ = {
isa = PBXGroup;
children = (
+ 7B836C730E55C8B000F6AD31 /* Configuration */,
08FB7795FE84155DC02AAC07 /* Source */,
1AB674ADFE9D54B511CA2CBB /* Products */,
);
@@ -66,6 +70,17 @@
name = Products;
sourceTree = "<group>";
};
+ 7B836C730E55C8B000F6AD31 /* Configuration */ = {
+ isa = PBXGroup;
+ children = (
+ 7B836C740E55C8CC00F6AD31 /* common.xcconfig */,
+ 7B836C750E55C8CC00F6AD31 /* debug.xcconfig */,
+ 7B836C760E55C8CC00F6AD31 /* release.xcconfig */,
+ );
+ name = Configuration;
+ path = ../build;
+ sourceTree = "<group>";
+ };
/* End PBXGroup section */
/* Begin PBXNativeTarget section */
@@ -142,38 +157,15 @@
};
1DEB91F008733DB70010E9CD /* Debug */ = {
isa = XCBuildConfiguration;
+ baseConfigurationReference = 7B836C750E55C8CC00F6AD31 /* debug.xcconfig */;
buildSettings = {
- ALWAYS_SEARCH_USER_PATHS = NO;
- COPY_PHASE_STRIP = NO;
- DEBUG_INFORMATION_FORMAT = dwarf;
- GCC_CW_ASM_SYNTAX = NO;
- GCC_DYNAMIC_NO_PIC = YES;
- GCC_ENABLE_PASCAL_STRINGS = NO;
- GCC_INLINES_ARE_PRIVATE_EXTERN = YES;
- GCC_OPTIMIZATION_LEVEL = 0;
- GCC_PREPROCESSOR_DEFINITIONS = DEBUG;
- GCC_SYMBOLS_PRIVATE_EXTERN = YES;
- PREBINDING = NO;
- USE_HEADERMAP = NO;
- WARNING_CFLAGS = "-Wall";
};
name = Debug;
};
1DEB91F108733DB70010E9CD /* Release */ = {
isa = XCBuildConfiguration;
+ baseConfigurationReference = 7B836C760E55C8CC00F6AD31 /* release.xcconfig */;
buildSettings = {
- ALWAYS_SEARCH_USER_PATHS = NO;
- DEAD_CODE_STRIPPING = YES;
- DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
- GCC_CW_ASM_SYNTAX = NO;
- GCC_DYNAMIC_NO_PIC = YES;
- GCC_ENABLE_PASCAL_STRINGS = NO;
- GCC_INLINES_ARE_PRIVATE_EXTERN = YES;
- GCC_PREPROCESSOR_DEFINITIONS = NDEBUG;
- GCC_SYMBOLS_PRIVATE_EXTERN = YES;
- PREBINDING = NO;
- USE_HEADERMAP = NO;
- WARNING_CFLAGS = "-Wall";
};
name = Release;
};