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

Unified Diff: tools/v8.xcodeproj/project.pbxproj

Issue 99188: Fix the xcode project to define the correct V8_ARCH_*. (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 11 years, 8 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/v8.xcodeproj/project.pbxproj
===================================================================
--- tools/v8.xcodeproj/project.pbxproj (revision 1817)
+++ tools/v8.xcodeproj/project.pbxproj (working copy)
@@ -1369,7 +1369,6 @@
GCC_PRECOMPILE_PREFIX_HEADER = YES;
GCC_PREPROCESSOR_DEFINITIONS = (
"$(GCC_PREPROCESSOR_DEFINITIONS)",
- V8_ARCH_IA32,
DEBUG,
);
GCC_SYMBOLS_PRIVATE_EXTERN = YES;
@@ -1409,7 +1408,6 @@
GCC_PRECOMPILE_PREFIX_HEADER = YES;
GCC_PREPROCESSOR_DEFINITIONS = (
"$(GCC_PREPROCESSOR_DEFINITIONS)",
- V8_ARCH_IA32,
NDEBUG,
);
GCC_SYMBOLS_PRIVATE_EXTERN = YES;
@@ -1430,6 +1428,11 @@
893988090F2A35FA007D5254 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
+ GCC_PREPROCESSOR_DEFINITIONS = (
+ "$(GCC_PREPROCESSOR_DEFINITIONS)",
+ V8_ARCH_IA32,
+ DEBUG,
+ );
HEADER_SEARCH_PATHS = ../src;
PRODUCT_NAME = v8_shell;
};
@@ -1438,6 +1441,11 @@
8939880A0F2A35FA007D5254 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
+ GCC_PREPROCESSOR_DEFINITIONS = (
+ "$(GCC_PREPROCESSOR_DEFINITIONS)",
+ V8_ARCH_IA32,
+ NDEBUG,
+ );
HEADER_SEARCH_PATHS = ../src;
PRODUCT_NAME = v8_shell;
};
@@ -1449,8 +1457,8 @@
DEPLOYMENT_POSTPROCESSING = NO;
GCC_PREPROCESSOR_DEFINITIONS = (
"$(GCC_PREPROCESSOR_DEFINITIONS)",
- V8_ARCH_IA32,
ENABLE_DISASSEMBLER,
+ V8_ARCH_IA32,
ENABLE_LOGGING_AND_PROFILING,
);
HEADER_SEARCH_PATHS = ../src;
@@ -1463,6 +1471,11 @@
isa = XCBuildConfiguration;
buildSettings = {
DEPLOYMENT_POSTPROCESSING = NO;
+ GCC_PREPROCESSOR_DEFINITIONS = (
+ "$(GCC_PREPROCESSOR_DEFINITIONS)",
+ V8_ARCH_IA32,
+ NDEBUG,
+ );
HEADER_SEARCH_PATHS = ../src;
PRODUCT_NAME = v8;
STRIP_STYLE = debugging;
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698