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

Side by Side Diff: tools/gyp/v8.gyp

Issue 6597029: [Isolates] Merge r 6300:6500 from bleeding_edge to isolates. (Closed) Base URL: http://v8.googlecode.com/svn/branches/experimental/isolates/
Patch Set: Created 9 years, 9 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 | « test/mozilla/mozilla.status ('k') | tools/v8.xcodeproj/project.pbxproj » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2011 the V8 project authors. All rights reserved. 1 # Copyright 2011 the V8 project authors. All rights reserved.
2 # Redistribution and use in source and binary forms, with or without 2 # Redistribution and use in source and binary forms, with or without
3 # modification, are permitted provided that the following conditions are 3 # modification, are permitted provided that the following conditions are
4 # met: 4 # met:
5 # 5 #
6 # * Redistributions of source code must retain the above copyright 6 # * Redistributions of source code must retain the above copyright
7 # notice, this list of conditions and the following disclaimer. 7 # notice, this list of conditions and the following disclaimer.
8 # * Redistributions in binary form must reproduce the above 8 # * Redistributions in binary form must reproduce the above
9 # copyright notice, this list of conditions and the following 9 # copyright notice, this list of conditions and the following
10 # disclaimer in the documentation and/or other materials provided 10 # disclaimer in the documentation and/or other materials provided
(...skipping 14 matching lines...) Expand all
25 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 25 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26 # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 26 # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 27
28 { 28 {
29 'variables': { 29 'variables': {
30 'use_system_v8%': 0, 30 'use_system_v8%': 0,
31 'msvs_use_common_release': 0, 31 'msvs_use_common_release': 0,
32 'gcc_version%': 'unknown', 32 'gcc_version%': 'unknown',
33 'v8_target_arch%': '<(target_arch)', 33 'v8_target_arch%': '<(target_arch)',
34 'v8_use_snapshot%': 'true', 34 'v8_use_snapshot%': 'true',
35 'v8_use_liveobjectlist%': 'false',
35 }, 36 },
36 'conditions': [ 37 'conditions': [
37 ['use_system_v8==0', { 38 ['use_system_v8==0', {
38 'target_defaults': { 39 'target_defaults': {
39 'defines': [ 40 'defines': [
40 'ENABLE_LOGGING_AND_PROFILING', 41 'ENABLE_LOGGING_AND_PROFILING',
41 'ENABLE_DEBUGGER_SUPPORT', 42 'ENABLE_DEBUGGER_SUPPORT',
42 'ENABLE_VMSTATE_TRACKING', 43 'ENABLE_VMSTATE_TRACKING',
43 ], 44 ],
44 'conditions': [ 45 'conditions': [
(...skipping 14 matching lines...) Expand all
59 'V8_TARGET_ARCH_IA32', 60 'V8_TARGET_ARCH_IA32',
60 ], 61 ],
61 }], 62 }],
62 ['v8_target_arch=="x64"', { 63 ['v8_target_arch=="x64"', {
63 'defines': [ 64 'defines': [
64 'V8_TARGET_ARCH_X64', 65 'V8_TARGET_ARCH_X64',
65 ], 66 ],
66 }], 67 }],
67 ], 68 ],
68 }], 69 }],
70 ['v8_use_liveobjectlist=="true"', {
71 'defines': [
72 'ENABLE_DEBUGGER_SUPPORT',
73 'INSPECTOR',
74 'OBJECT_PRINT',
75 'LIVEOBJECTLIST',
76 ],
77 }],
69 ], 78 ],
70 'configurations': { 79 'configurations': {
71 'Debug': { 80 'Debug': {
72 'defines': [ 81 'defines': [
73 'DEBUG', 82 'DEBUG',
74 '_DEBUG', 83 '_DEBUG',
75 'ENABLE_DISASSEMBLER', 84 'ENABLE_DISASSEMBLER',
76 'V8_ENABLE_CHECKS', 85 'V8_ENABLE_CHECKS',
77 'OBJECT_PRINT', 86 'OBJECT_PRINT',
78 ], 87 ],
(...skipping 331 matching lines...) Expand 10 before | Expand all | Expand 10 after
410 '../../src/heap.h', 419 '../../src/heap.h',
411 '../../src/heap-profiler.cc', 420 '../../src/heap-profiler.cc',
412 '../../src/heap-profiler.h', 421 '../../src/heap-profiler.h',
413 '../../src/hydrogen.cc', 422 '../../src/hydrogen.cc',
414 '../../src/hydrogen.h', 423 '../../src/hydrogen.h',
415 '../../src/hydrogen-instructions.cc', 424 '../../src/hydrogen-instructions.cc',
416 '../../src/hydrogen-instructions.h', 425 '../../src/hydrogen-instructions.h',
417 '../../src/ic-inl.h', 426 '../../src/ic-inl.h',
418 '../../src/ic.cc', 427 '../../src/ic.cc',
419 '../../src/ic.h', 428 '../../src/ic.h',
429 '../../src/inspector.cc',
430 '../../src/inspector.h',
420 '../../src/interpreter-irregexp.cc', 431 '../../src/interpreter-irregexp.cc',
421 '../../src/interpreter-irregexp.h', 432 '../../src/interpreter-irregexp.h',
422 '../../src/jump-target-inl.h', 433 '../../src/jump-target-inl.h',
423 '../../src/jump-target.cc', 434 '../../src/jump-target.cc',
424 '../../src/jump-target.h', 435 '../../src/jump-target.h',
425 '../../src/jsregexp.cc', 436 '../../src/jsregexp.cc',
426 '../../src/jsregexp.h', 437 '../../src/jsregexp.h',
427 '../../src/isolate.cc', 438 '../../src/isolate.cc',
428 '../../src/isolate.h', 439 '../../src/isolate.h',
429 '../../src/list-inl.h', 440 '../../src/list-inl.h',
430 '../../src/list.h', 441 '../../src/list.h',
431 '../../src/lithium.cc', 442 '../../src/lithium.cc',
432 '../../src/lithium.h', 443 '../../src/lithium.h',
433 '../../src/lithium-allocator.cc', 444 '../../src/lithium-allocator.cc',
434 '../../src/lithium-allocator.h', 445 '../../src/lithium-allocator.h',
435 '../../src/liveedit.cc', 446 '../../src/liveedit.cc',
436 '../../src/liveedit.h', 447 '../../src/liveedit.h',
448 '../../src/liveobjectlist-inl.h',
449 '../../src/liveobjectlist.cc',
450 '../../src/liveobjectlist.h',
437 '../../src/log-inl.h', 451 '../../src/log-inl.h',
438 '../../src/log-utils.cc', 452 '../../src/log-utils.cc',
439 '../../src/log-utils.h', 453 '../../src/log-utils.h',
440 '../../src/log.cc', 454 '../../src/log.cc',
441 '../../src/log.h', 455 '../../src/log.h',
442 '../../src/macro-assembler.h', 456 '../../src/macro-assembler.h',
443 '../../src/mark-compact.cc', 457 '../../src/mark-compact.cc',
444 '../../src/mark-compact.h', 458 '../../src/mark-compact.h',
445 '../../src/memory.h', 459 '../../src/memory.h',
446 '../../src/messages.cc', 460 '../../src/messages.cc',
(...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after
576 '../../src/arm/constants-arm.cc', 590 '../../src/arm/constants-arm.cc',
577 '../../src/arm/cpu-arm.cc', 591 '../../src/arm/cpu-arm.cc',
578 '../../src/arm/debug-arm.cc', 592 '../../src/arm/debug-arm.cc',
579 '../../src/arm/deoptimizer-arm.cc', 593 '../../src/arm/deoptimizer-arm.cc',
580 '../../src/arm/disasm-arm.cc', 594 '../../src/arm/disasm-arm.cc',
581 '../../src/arm/frames-arm.cc', 595 '../../src/arm/frames-arm.cc',
582 '../../src/arm/frames-arm.h', 596 '../../src/arm/frames-arm.h',
583 '../../src/arm/full-codegen-arm.cc', 597 '../../src/arm/full-codegen-arm.cc',
584 '../../src/arm/ic-arm.cc', 598 '../../src/arm/ic-arm.cc',
585 '../../src/arm/jump-target-arm.cc', 599 '../../src/arm/jump-target-arm.cc',
600 '../../src/arm/lithium-arm.cc',
601 '../../src/arm/lithium-arm.h',
586 '../../src/arm/lithium-codegen-arm.cc', 602 '../../src/arm/lithium-codegen-arm.cc',
587 '../../src/arm/lithium-codegen-arm.h', 603 '../../src/arm/lithium-codegen-arm.h',
588 '../../src/arm/lithium-arm.cc',
589 '../../src/arm/lithium-arm.h',
590 '../../src/arm/macro-assembler-arm.cc', 604 '../../src/arm/macro-assembler-arm.cc',
591 '../../src/arm/macro-assembler-arm.h', 605 '../../src/arm/macro-assembler-arm.h',
592 '../../src/arm/regexp-macro-assembler-arm.cc', 606 '../../src/arm/regexp-macro-assembler-arm.cc',
593 '../../src/arm/regexp-macro-assembler-arm.h', 607 '../../src/arm/regexp-macro-assembler-arm.h',
594 '../../src/arm/register-allocator-arm.cc', 608 '../../src/arm/register-allocator-arm.cc',
595 '../../src/arm/simulator-arm.cc', 609 '../../src/arm/simulator-arm.cc',
596 '../../src/arm/stub-cache-arm.cc', 610 '../../src/arm/stub-cache-arm.cc',
597 '../../src/arm/virtual-frame-arm-inl.h', 611 '../../src/arm/virtual-frame-arm-inl.h',
598 '../../src/arm/virtual-frame-arm.cc', 612 '../../src/arm/virtual-frame-arm.cc',
599 '../../src/arm/virtual-frame-arm.h', 613 '../../src/arm/virtual-frame-arm.h',
(...skipping 29 matching lines...) Expand all
629 '../../src/ia32/debug-ia32.cc', 643 '../../src/ia32/debug-ia32.cc',
630 '../../src/ia32/deoptimizer-ia32.cc', 644 '../../src/ia32/deoptimizer-ia32.cc',
631 '../../src/ia32/disasm-ia32.cc', 645 '../../src/ia32/disasm-ia32.cc',
632 '../../src/ia32/frames-ia32.cc', 646 '../../src/ia32/frames-ia32.cc',
633 '../../src/ia32/frames-ia32.h', 647 '../../src/ia32/frames-ia32.h',
634 '../../src/ia32/full-codegen-ia32.cc', 648 '../../src/ia32/full-codegen-ia32.cc',
635 '../../src/ia32/ic-ia32.cc', 649 '../../src/ia32/ic-ia32.cc',
636 '../../src/ia32/jump-target-ia32.cc', 650 '../../src/ia32/jump-target-ia32.cc',
637 '../../src/ia32/lithium-codegen-ia32.cc', 651 '../../src/ia32/lithium-codegen-ia32.cc',
638 '../../src/ia32/lithium-codegen-ia32.h', 652 '../../src/ia32/lithium-codegen-ia32.h',
653 '../../src/ia32/lithium-gap-resolver-ia32.cc',
654 '../../src/ia32/lithium-gap-resolver-ia32.h',
639 '../../src/ia32/lithium-ia32.cc', 655 '../../src/ia32/lithium-ia32.cc',
640 '../../src/ia32/lithium-ia32.h', 656 '../../src/ia32/lithium-ia32.h',
641 '../../src/ia32/macro-assembler-ia32.cc', 657 '../../src/ia32/macro-assembler-ia32.cc',
642 '../../src/ia32/macro-assembler-ia32.h', 658 '../../src/ia32/macro-assembler-ia32.h',
643 '../../src/ia32/regexp-macro-assembler-ia32.cc', 659 '../../src/ia32/regexp-macro-assembler-ia32.cc',
644 '../../src/ia32/regexp-macro-assembler-ia32.h', 660 '../../src/ia32/regexp-macro-assembler-ia32.h',
645 '../../src/ia32/register-allocator-ia32.cc', 661 '../../src/ia32/register-allocator-ia32.cc',
646 '../../src/ia32/stub-cache-ia32.cc', 662 '../../src/ia32/stub-cache-ia32.cc',
647 '../../src/ia32/virtual-frame-ia32.cc', 663 '../../src/ia32/virtual-frame-ia32.cc',
648 '../../src/ia32/virtual-frame-ia32.h', 664 '../../src/ia32/virtual-frame-ia32.h',
(...skipping 21 matching lines...) Expand all
670 '../../src/x64/debug-x64.cc', 686 '../../src/x64/debug-x64.cc',
671 '../../src/x64/deoptimizer-x64.cc', 687 '../../src/x64/deoptimizer-x64.cc',
672 '../../src/x64/disasm-x64.cc', 688 '../../src/x64/disasm-x64.cc',
673 '../../src/x64/frames-x64.cc', 689 '../../src/x64/frames-x64.cc',
674 '../../src/x64/frames-x64.h', 690 '../../src/x64/frames-x64.h',
675 '../../src/x64/full-codegen-x64.cc', 691 '../../src/x64/full-codegen-x64.cc',
676 '../../src/x64/ic-x64.cc', 692 '../../src/x64/ic-x64.cc',
677 '../../src/x64/jump-target-x64.cc', 693 '../../src/x64/jump-target-x64.cc',
678 '../../src/x64/lithium-codegen-x64.cc', 694 '../../src/x64/lithium-codegen-x64.cc',
679 '../../src/x64/lithium-codegen-x64.h', 695 '../../src/x64/lithium-codegen-x64.h',
696 '../../src/x64/lithium-gap-resolver-x64.cc',
697 '../../src/x64/lithium-gap-resolver-x64.h',
680 '../../src/x64/lithium-x64.cc', 698 '../../src/x64/lithium-x64.cc',
681 '../../src/x64/lithium-x64.h', 699 '../../src/x64/lithium-x64.h',
682 '../../src/x64/macro-assembler-x64.cc', 700 '../../src/x64/macro-assembler-x64.cc',
683 '../../src/x64/macro-assembler-x64.h', 701 '../../src/x64/macro-assembler-x64.h',
684 '../../src/x64/regexp-macro-assembler-x64.cc', 702 '../../src/x64/regexp-macro-assembler-x64.cc',
685 '../../src/x64/regexp-macro-assembler-x64.h', 703 '../../src/x64/regexp-macro-assembler-x64.h',
686 '../../src/x64/register-allocator-x64.cc', 704 '../../src/x64/register-allocator-x64.cc',
687 '../../src/x64/stub-cache-x64.cc', 705 '../../src/x64/stub-cache-x64.cc',
688 '../../src/x64/virtual-frame-x64.cc', 706 '../../src/x64/virtual-frame-x64.cc',
689 '../../src/x64/virtual-frame-x64.h', 707 '../../src/x64/virtual-frame-x64.h',
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
726 ['OS=="mac"', { 744 ['OS=="mac"', {
727 'sources': [ 745 'sources': [
728 '../../src/platform-macos.cc', 746 '../../src/platform-macos.cc',
729 '../../src/platform-posix.cc' 747 '../../src/platform-posix.cc'
730 ]}, 748 ]},
731 ], 749 ],
732 ['OS=="win"', { 750 ['OS=="win"', {
733 'sources': [ 751 'sources': [
734 '../../src/platform-win32.cc', 752 '../../src/platform-win32.cc',
735 ], 753 ],
736 # 4355, 4800 came from common.vsprops 754 'msvs_disabled_warnings': [4351, 4355, 4800],
737 'msvs_disabled_warnings': [4355, 4800],
738 'link_settings': { 755 'link_settings': {
739 'libraries': [ '-lwinmm.lib' ], 756 'libraries': [ '-lwinmm.lib' ],
740 }, 757 },
741 }], 758 }],
742 ['OS=="win" and component=="shared_library"', { 759 ['OS=="win" and component=="shared_library"', {
743 'defines': [ 760 'defines': [
744 'BUILDING_V8_SHARED' 761 'BUILDING_V8_SHARED'
745 ], 762 ],
746 }], 763 }],
747 ], 764 ],
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
844 'target_name': 'v8_shell', 861 'target_name': 'v8_shell',
845 'type': 'none', 862 'type': 'none',
846 'dependencies': [ 863 'dependencies': [
847 'v8' 864 'v8'
848 ], 865 ],
849 }, 866 },
850 ], 867 ],
851 }], 868 }],
852 ], 869 ],
853 } 870 }
OLDNEW
« no previous file with comments | « test/mozilla/mozilla.status ('k') | tools/v8.xcodeproj/project.pbxproj » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698