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

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

Issue 6529032: Merge 6168:6800 from bleeding_edge to experimental/gc branch. (Closed) Base URL: http://v8.googlecode.com/svn/branches/experimental/gc/
Patch Set: Created 9 years, 10 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 | « tools/csvparser.js ('k') | tools/logreader.js » ('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 2009 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
11 # with the distribution. 11 # with the distribution.
(...skipping 13 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/list-inl.h', 438 '../../src/list-inl.h',
428 '../../src/list.h', 439 '../../src/list.h',
440 '../../src/lithium.cc',
441 '../../src/lithium.h',
429 '../../src/lithium-allocator.cc', 442 '../../src/lithium-allocator.cc',
430 '../../src/lithium-allocator.h', 443 '../../src/lithium-allocator.h',
444 '../../src/lithium-allocator-inl.h',
431 '../../src/liveedit.cc', 445 '../../src/liveedit.cc',
432 '../../src/liveedit.h', 446 '../../src/liveedit.h',
447 '../../src/liveobjectlist-inl.h',
448 '../../src/liveobjectlist.cc',
449 '../../src/liveobjectlist.h',
433 '../../src/log-inl.h', 450 '../../src/log-inl.h',
434 '../../src/log-utils.cc', 451 '../../src/log-utils.cc',
435 '../../src/log-utils.h', 452 '../../src/log-utils.h',
436 '../../src/log.cc', 453 '../../src/log.cc',
437 '../../src/log.h', 454 '../../src/log.h',
438 '../../src/macro-assembler.h', 455 '../../src/macro-assembler.h',
439 '../../src/mark-compact.cc', 456 '../../src/mark-compact.cc',
440 '../../src/mark-compact.h', 457 '../../src/mark-compact.h',
441 '../../src/memory.h', 458 '../../src/memory.h',
442 '../../src/messages.cc', 459 '../../src/messages.cc',
443 '../../src/messages.h', 460 '../../src/messages.h',
444 '../../src/natives.h', 461 '../../src/natives.h',
445 '../../src/objects-debug.cc', 462 '../../src/objects-debug.cc',
446 '../../src/objects-printer.cc', 463 '../../src/objects-printer.cc',
447 '../../src/objects-inl.h', 464 '../../src/objects-inl.h',
448 '../../src/objects-visiting.cc', 465 '../../src/objects-visiting.cc',
449 '../../src/objects-visiting.h', 466 '../../src/objects-visiting.h',
450 '../../src/objects.cc', 467 '../../src/objects.cc',
451 '../../src/objects.h', 468 '../../src/objects.h',
452 '../../src/oprofile-agent.h',
453 '../../src/oprofile-agent.cc',
454 '../../src/parser.cc', 469 '../../src/parser.cc',
455 '../../src/parser.h', 470 '../../src/parser.h',
456 '../../src/platform.h', 471 '../../src/platform.h',
457 '../../src/preparse-data.cc', 472 '../../src/preparse-data.cc',
458 '../../src/preparse-data.h', 473 '../../src/preparse-data.h',
459 '../../src/preparser.cc', 474 '../../src/preparser.cc',
460 '../../src/preparser.h', 475 '../../src/preparser.h',
461 '../../src/prettyprinter.cc', 476 '../../src/prettyprinter.cc',
462 '../../src/prettyprinter.h', 477 '../../src/prettyprinter.h',
463 '../../src/property.cc', 478 '../../src/property.cc',
(...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after
572 '../../src/arm/constants-arm.cc', 587 '../../src/arm/constants-arm.cc',
573 '../../src/arm/cpu-arm.cc', 588 '../../src/arm/cpu-arm.cc',
574 '../../src/arm/debug-arm.cc', 589 '../../src/arm/debug-arm.cc',
575 '../../src/arm/deoptimizer-arm.cc', 590 '../../src/arm/deoptimizer-arm.cc',
576 '../../src/arm/disasm-arm.cc', 591 '../../src/arm/disasm-arm.cc',
577 '../../src/arm/frames-arm.cc', 592 '../../src/arm/frames-arm.cc',
578 '../../src/arm/frames-arm.h', 593 '../../src/arm/frames-arm.h',
579 '../../src/arm/full-codegen-arm.cc', 594 '../../src/arm/full-codegen-arm.cc',
580 '../../src/arm/ic-arm.cc', 595 '../../src/arm/ic-arm.cc',
581 '../../src/arm/jump-target-arm.cc', 596 '../../src/arm/jump-target-arm.cc',
597 '../../src/arm/lithium-arm.cc',
598 '../../src/arm/lithium-arm.h',
582 '../../src/arm/lithium-codegen-arm.cc', 599 '../../src/arm/lithium-codegen-arm.cc',
583 '../../src/arm/lithium-codegen-arm.h', 600 '../../src/arm/lithium-codegen-arm.h',
584 '../../src/arm/lithium-arm.cc',
585 '../../src/arm/lithium-arm.h',
586 '../../src/arm/macro-assembler-arm.cc', 601 '../../src/arm/macro-assembler-arm.cc',
587 '../../src/arm/macro-assembler-arm.h', 602 '../../src/arm/macro-assembler-arm.h',
588 '../../src/arm/regexp-macro-assembler-arm.cc', 603 '../../src/arm/regexp-macro-assembler-arm.cc',
589 '../../src/arm/regexp-macro-assembler-arm.h', 604 '../../src/arm/regexp-macro-assembler-arm.h',
590 '../../src/arm/register-allocator-arm.cc', 605 '../../src/arm/register-allocator-arm.cc',
591 '../../src/arm/simulator-arm.cc', 606 '../../src/arm/simulator-arm.cc',
592 '../../src/arm/stub-cache-arm.cc', 607 '../../src/arm/stub-cache-arm.cc',
593 '../../src/arm/virtual-frame-arm-inl.h', 608 '../../src/arm/virtual-frame-arm-inl.h',
594 '../../src/arm/virtual-frame-arm.cc', 609 '../../src/arm/virtual-frame-arm.cc',
595 '../../src/arm/virtual-frame-arm.h', 610 '../../src/arm/virtual-frame-arm.h',
(...skipping 29 matching lines...) Expand all
625 '../../src/ia32/debug-ia32.cc', 640 '../../src/ia32/debug-ia32.cc',
626 '../../src/ia32/deoptimizer-ia32.cc', 641 '../../src/ia32/deoptimizer-ia32.cc',
627 '../../src/ia32/disasm-ia32.cc', 642 '../../src/ia32/disasm-ia32.cc',
628 '../../src/ia32/frames-ia32.cc', 643 '../../src/ia32/frames-ia32.cc',
629 '../../src/ia32/frames-ia32.h', 644 '../../src/ia32/frames-ia32.h',
630 '../../src/ia32/full-codegen-ia32.cc', 645 '../../src/ia32/full-codegen-ia32.cc',
631 '../../src/ia32/ic-ia32.cc', 646 '../../src/ia32/ic-ia32.cc',
632 '../../src/ia32/jump-target-ia32.cc', 647 '../../src/ia32/jump-target-ia32.cc',
633 '../../src/ia32/lithium-codegen-ia32.cc', 648 '../../src/ia32/lithium-codegen-ia32.cc',
634 '../../src/ia32/lithium-codegen-ia32.h', 649 '../../src/ia32/lithium-codegen-ia32.h',
650 '../../src/ia32/lithium-gap-resolver-ia32.cc',
651 '../../src/ia32/lithium-gap-resolver-ia32.h',
635 '../../src/ia32/lithium-ia32.cc', 652 '../../src/ia32/lithium-ia32.cc',
636 '../../src/ia32/lithium-ia32.h', 653 '../../src/ia32/lithium-ia32.h',
637 '../../src/ia32/macro-assembler-ia32.cc', 654 '../../src/ia32/macro-assembler-ia32.cc',
638 '../../src/ia32/macro-assembler-ia32.h', 655 '../../src/ia32/macro-assembler-ia32.h',
639 '../../src/ia32/regexp-macro-assembler-ia32.cc', 656 '../../src/ia32/regexp-macro-assembler-ia32.cc',
640 '../../src/ia32/regexp-macro-assembler-ia32.h', 657 '../../src/ia32/regexp-macro-assembler-ia32.h',
641 '../../src/ia32/register-allocator-ia32.cc', 658 '../../src/ia32/register-allocator-ia32.cc',
642 '../../src/ia32/stub-cache-ia32.cc', 659 '../../src/ia32/stub-cache-ia32.cc',
643 '../../src/ia32/virtual-frame-ia32.cc', 660 '../../src/ia32/virtual-frame-ia32.cc',
644 '../../src/ia32/virtual-frame-ia32.h', 661 '../../src/ia32/virtual-frame-ia32.h',
(...skipping 19 matching lines...) Expand all
664 '../../src/x64/codegen-x64.h', 681 '../../src/x64/codegen-x64.h',
665 '../../src/x64/cpu-x64.cc', 682 '../../src/x64/cpu-x64.cc',
666 '../../src/x64/debug-x64.cc', 683 '../../src/x64/debug-x64.cc',
667 '../../src/x64/deoptimizer-x64.cc', 684 '../../src/x64/deoptimizer-x64.cc',
668 '../../src/x64/disasm-x64.cc', 685 '../../src/x64/disasm-x64.cc',
669 '../../src/x64/frames-x64.cc', 686 '../../src/x64/frames-x64.cc',
670 '../../src/x64/frames-x64.h', 687 '../../src/x64/frames-x64.h',
671 '../../src/x64/full-codegen-x64.cc', 688 '../../src/x64/full-codegen-x64.cc',
672 '../../src/x64/ic-x64.cc', 689 '../../src/x64/ic-x64.cc',
673 '../../src/x64/jump-target-x64.cc', 690 '../../src/x64/jump-target-x64.cc',
691 '../../src/x64/lithium-codegen-x64.cc',
692 '../../src/x64/lithium-codegen-x64.h',
693 '../../src/x64/lithium-gap-resolver-x64.cc',
694 '../../src/x64/lithium-gap-resolver-x64.h',
695 '../../src/x64/lithium-x64.cc',
696 '../../src/x64/lithium-x64.h',
674 '../../src/x64/macro-assembler-x64.cc', 697 '../../src/x64/macro-assembler-x64.cc',
675 '../../src/x64/macro-assembler-x64.h', 698 '../../src/x64/macro-assembler-x64.h',
676 '../../src/x64/regexp-macro-assembler-x64.cc', 699 '../../src/x64/regexp-macro-assembler-x64.cc',
677 '../../src/x64/regexp-macro-assembler-x64.h', 700 '../../src/x64/regexp-macro-assembler-x64.h',
678 '../../src/x64/register-allocator-x64.cc', 701 '../../src/x64/register-allocator-x64.cc',
679 '../../src/x64/stub-cache-x64.cc', 702 '../../src/x64/stub-cache-x64.cc',
680 '../../src/x64/virtual-frame-x64.cc', 703 '../../src/x64/virtual-frame-x64.cc',
681 '../../src/x64/virtual-frame-x64.h', 704 '../../src/x64/virtual-frame-x64.h',
682 ], 705 ],
683 }], 706 }],
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
718 ['OS=="mac"', { 741 ['OS=="mac"', {
719 'sources': [ 742 'sources': [
720 '../../src/platform-macos.cc', 743 '../../src/platform-macos.cc',
721 '../../src/platform-posix.cc' 744 '../../src/platform-posix.cc'
722 ]}, 745 ]},
723 ], 746 ],
724 ['OS=="win"', { 747 ['OS=="win"', {
725 'sources': [ 748 'sources': [
726 '../../src/platform-win32.cc', 749 '../../src/platform-win32.cc',
727 ], 750 ],
728 # 4355, 4800 came from common.vsprops 751 'msvs_disabled_warnings': [4351, 4355, 4800],
729 'msvs_disabled_warnings': [4355, 4800],
730 'link_settings': { 752 'link_settings': {
731 'libraries': [ '-lwinmm.lib' ], 753 'libraries': [ '-lwinmm.lib' ],
732 }, 754 },
733 }], 755 }],
734 ['OS=="win" and component=="shared_library"', { 756 ['OS=="win" and component=="shared_library"', {
735 'defines': [ 757 'defines': [
736 'BUILDING_V8_SHARED' 758 'BUILDING_V8_SHARED'
737 ], 759 ],
738 }], 760 }],
739 ], 761 ],
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
836 'target_name': 'v8_shell', 858 'target_name': 'v8_shell',
837 'type': 'none', 859 'type': 'none',
838 'dependencies': [ 860 'dependencies': [
839 'v8' 861 'v8'
840 ], 862 ],
841 }, 863 },
842 ], 864 ],
843 }], 865 }],
844 ], 866 ],
845 } 867 }
OLDNEW
« no previous file with comments | « tools/csvparser.js ('k') | tools/logreader.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698