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

Side by Side Diff: tools/v8.xcodeproj/project.pbxproj

Issue 155085: Separate native and interpreted regexp by compile time flag, not runtime. (Closed)
Patch Set: Addressed review comments. Adapted builds scripts. Created 11 years, 5 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
« no previous file with comments | « tools/gyp/v8.gyp ('k') | tools/visual_studio/ia32.vsprops » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // !$*UTF8*$! 1 // !$*UTF8*$!
2 { 2 {
3 archiveVersion = 1; 3 archiveVersion = 1;
4 classes = { 4 classes = {
5 }; 5 };
6 objectVersion = 45; 6 objectVersion = 45;
7 objects = { 7 objects = {
8 8
9 /* Begin PBXAggregateTarget section */ 9 /* Begin PBXAggregateTarget section */
10 7BF891930E73098D000BAF8A /* All */ = { 10 7BF891930E73098D000BAF8A /* All */ = {
(...skipping 1431 matching lines...) Expand 10 before | Expand all | Expand 10 after
1442 ); 1442 );
1443 }; 1443 };
1444 name = Release; 1444 name = Release;
1445 }; 1445 };
1446 893988090F2A35FA007D5254 /* Debug */ = { 1446 893988090F2A35FA007D5254 /* Debug */ = {
1447 isa = XCBuildConfiguration; 1447 isa = XCBuildConfiguration;
1448 buildSettings = { 1448 buildSettings = {
1449 GCC_PREPROCESSOR_DEFINITIONS = ( 1449 GCC_PREPROCESSOR_DEFINITIONS = (
1450 "$(GCC_PREPROCESSOR_DEFINITIONS)", 1450 "$(GCC_PREPROCESSOR_DEFINITIONS)",
1451 V8_TARGET_ARCH_IA32, 1451 V8_TARGET_ARCH_IA32,
1452 V8_NATIVE_REGEXP,
1452 DEBUG, 1453 DEBUG,
1453 ); 1454 );
1454 HEADER_SEARCH_PATHS = ../src; 1455 HEADER_SEARCH_PATHS = ../src;
1455 PRODUCT_NAME = v8_shell; 1456 PRODUCT_NAME = v8_shell;
1456 }; 1457 };
1457 name = Debug; 1458 name = Debug;
1458 }; 1459 };
1459 8939880A0F2A35FA007D5254 /* Release */ = { 1460 8939880A0F2A35FA007D5254 /* Release */ = {
1460 isa = XCBuildConfiguration; 1461 isa = XCBuildConfiguration;
1461 buildSettings = { 1462 buildSettings = {
1462 GCC_PREPROCESSOR_DEFINITIONS = ( 1463 GCC_PREPROCESSOR_DEFINITIONS = (
1463 "$(GCC_PREPROCESSOR_DEFINITIONS)", 1464 "$(GCC_PREPROCESSOR_DEFINITIONS)",
1464 V8_TARGET_ARCH_IA32, 1465 V8_TARGET_ARCH_IA32,
1466 V8_NATIVE_REGEXP,
1465 NDEBUG, 1467 NDEBUG,
1466 ); 1468 );
1467 HEADER_SEARCH_PATHS = ../src; 1469 HEADER_SEARCH_PATHS = ../src;
1468 PRODUCT_NAME = v8_shell; 1470 PRODUCT_NAME = v8_shell;
1469 }; 1471 };
1470 name = Release; 1472 name = Release;
1471 }; 1473 };
1472 8970F2F10E719FB2006AE7B5 /* Debug */ = { 1474 8970F2F10E719FB2006AE7B5 /* Debug */ = {
1473 isa = XCBuildConfiguration; 1475 isa = XCBuildConfiguration;
1474 buildSettings = { 1476 buildSettings = {
1475 DEPLOYMENT_POSTPROCESSING = NO; 1477 DEPLOYMENT_POSTPROCESSING = NO;
1476 GCC_PREPROCESSOR_DEFINITIONS = ( 1478 GCC_PREPROCESSOR_DEFINITIONS = (
1477 "$(GCC_PREPROCESSOR_DEFINITIONS)", 1479 "$(GCC_PREPROCESSOR_DEFINITIONS)",
1478 ENABLE_DISASSEMBLER, 1480 ENABLE_DISASSEMBLER,
1479 V8_TARGET_ARCH_IA32, 1481 V8_TARGET_ARCH_IA32,
1482 V8_NATIVE_REGEXP,
1480 ENABLE_LOGGING_AND_PROFILING, 1483 ENABLE_LOGGING_AND_PROFILING,
1481 ); 1484 );
1482 HEADER_SEARCH_PATHS = ../src; 1485 HEADER_SEARCH_PATHS = ../src;
1483 PRODUCT_NAME = v8; 1486 PRODUCT_NAME = v8;
1484 STRIP_STYLE = debugging; 1487 STRIP_STYLE = debugging;
1485 }; 1488 };
1486 name = Debug; 1489 name = Debug;
1487 }; 1490 };
1488 8970F2F20E719FB2006AE7B5 /* Release */ = { 1491 8970F2F20E719FB2006AE7B5 /* Release */ = {
1489 isa = XCBuildConfiguration; 1492 isa = XCBuildConfiguration;
1490 buildSettings = { 1493 buildSettings = {
1491 DEPLOYMENT_POSTPROCESSING = NO; 1494 DEPLOYMENT_POSTPROCESSING = NO;
1492 GCC_PREPROCESSOR_DEFINITIONS = ( 1495 GCC_PREPROCESSOR_DEFINITIONS = (
1493 "$(GCC_PREPROCESSOR_DEFINITIONS)", 1496 "$(GCC_PREPROCESSOR_DEFINITIONS)",
1494 V8_TARGET_ARCH_IA32, 1497 V8_TARGET_ARCH_IA32,
1498 V8_NATIVE_REGEXP,
1495 NDEBUG, 1499 NDEBUG,
1496 ); 1500 );
1497 HEADER_SEARCH_PATHS = ../src; 1501 HEADER_SEARCH_PATHS = ../src;
1498 PRODUCT_NAME = v8; 1502 PRODUCT_NAME = v8;
1499 STRIP_STYLE = debugging; 1503 STRIP_STYLE = debugging;
1500 }; 1504 };
1501 name = Release; 1505 name = Release;
1502 }; 1506 };
1503 897F767C0E71B4CC007ACF34 /* Debug */ = { 1507 897F767C0E71B4CC007ACF34 /* Debug */ = {
1504 isa = XCBuildConfiguration; 1508 isa = XCBuildConfiguration;
(...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after
1625 89F23C930E78D5B6006B2466 /* Debug */, 1629 89F23C930E78D5B6006B2466 /* Debug */,
1626 89F23C940E78D5B6006B2466 /* Release */, 1630 89F23C940E78D5B6006B2466 /* Release */,
1627 ); 1631 );
1628 defaultConfigurationIsVisible = 0; 1632 defaultConfigurationIsVisible = 0;
1629 defaultConfigurationName = Release; 1633 defaultConfigurationName = Release;
1630 }; 1634 };
1631 /* End XCConfigurationList section */ 1635 /* End XCConfigurationList section */
1632 }; 1636 };
1633 rootObject = 8915B8680E719336009C4E19 /* Project object */; 1637 rootObject = 8915B8680E719336009C4E19 /* Project object */;
1634 } 1638 }
OLDNEW
« no previous file with comments | « tools/gyp/v8.gyp ('k') | tools/visual_studio/ia32.vsprops » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698