1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/media/webrtc/trunk/testing/gtest/xcode/Config/DebugProject.xcconfig Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,30 @@ 1.4 +// 1.5 +// DebugProject.xcconfig 1.6 +// 1.7 +// These are Debug Configuration project settings for the gtest framework and 1.8 +// examples. It is set in the "Based On:" dropdown in the "Project" info 1.9 +// dialog. 1.10 +// This file is based on the Xcode Configuration files in: 1.11 +// http://code.google.com/p/google-toolbox-for-mac/ 1.12 +// 1.13 + 1.14 +#include "General.xcconfig" 1.15 + 1.16 +// No optimization 1.17 +GCC_OPTIMIZATION_LEVEL = 0 1.18 + 1.19 +// Deployment postprocessing is what triggers Xcode to strip, turn it off 1.20 +DEPLOYMENT_POSTPROCESSING = NO 1.21 + 1.22 +// Dead code stripping off 1.23 +DEAD_CODE_STRIPPING = NO 1.24 + 1.25 +// Debug symbols should be on obviously 1.26 +GCC_GENERATE_DEBUGGING_SYMBOLS = YES 1.27 + 1.28 +// Define the DEBUG macro in all debug builds 1.29 +OTHER_CFLAGS = $(OTHER_CFLAGS) -DDEBUG=1 1.30 + 1.31 +// These are turned off to avoid STL incompatibilities with client code 1.32 +// // Turns on special C++ STL checks to "encourage" good STL use 1.33 +// GCC_PREPROCESSOR_DEFINITIONS = $(GCC_PREPROCESSOR_DEFINITIONS) _GLIBCXX_DEBUG_PEDANTIC _GLIBCXX_DEBUG _GLIBCPP_CONCEPT_CHECKS