OLD | NEW |
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 573 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
584 '../../src/x64/regexp-macro-assembler-x64.h', | 584 '../../src/x64/regexp-macro-assembler-x64.h', |
585 '../../src/x64/stub-cache-x64.cc', | 585 '../../src/x64/stub-cache-x64.cc', |
586 ], | 586 ], |
587 }], | 587 }], |
588 ['OS=="linux"', { | 588 ['OS=="linux"', { |
589 'link_settings': { | 589 'link_settings': { |
590 'conditions': [ | 590 'conditions': [ |
591 ['v8_compress_startup_data=="bz2"', { | 591 ['v8_compress_startup_data=="bz2"', { |
592 'libraries': [ | 592 'libraries': [ |
593 '-lbz2', | 593 '-lbz2', |
594 ]}], | 594 ] |
| 595 }], |
595 ], | 596 ], |
596 }, | 597 }, |
597 'sources': [ | 598 'sources': [ |
598 '../../src/platform-linux.cc', | 599 '../../src/platform-linux.cc', |
599 '../../src/platform-posix.cc' | 600 '../../src/platform-posix.cc' |
600 ], | 601 ], |
601 } | 602 } |
602 ], | 603 ], |
603 ['OS=="android"', { | 604 ['OS=="android"', { |
| 605 'defines': [ |
| 606 'CAN_USE_VFP_INSTRUCTIONS', |
| 607 ], |
604 'sources': [ | 608 'sources': [ |
605 '../../src/platform-posix.cc', | 609 '../../src/platform-posix.cc', |
606 ], | 610 ], |
607 'conditions': [ | 611 'conditions': [ |
608 ['host_os=="mac" and _toolset!="target"', { | 612 ['host_os=="mac" and _toolset!="target"', { |
609 'sources': [ | 613 'sources': [ |
610 '../../src/platform-macos.cc' | 614 '../../src/platform-macos.cc' |
611 ] | 615 ] |
612 }, { | 616 }, { |
613 'sources': [ | 617 'sources': [ |
(...skipping 151 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
765 ], | 769 ], |
766 'conditions': [ | 770 'conditions': [ |
767 ['want_separate_host_toolset==1', { | 771 ['want_separate_host_toolset==1', { |
768 'toolsets': ['host'], | 772 'toolsets': ['host'], |
769 }, { | 773 }, { |
770 'toolsets': ['target'], | 774 'toolsets': ['target'], |
771 }], | 775 }], |
772 ['v8_compress_startup_data=="bz2"', { | 776 ['v8_compress_startup_data=="bz2"', { |
773 'libraries': [ | 777 'libraries': [ |
774 '-lbz2', | 778 '-lbz2', |
775 ]} | 779 ] |
776 ], | 780 }], |
777 ], | 781 ], |
778 }, | 782 }, |
779 { | 783 { |
780 'target_name': 'v8_shell', | 784 'target_name': 'v8_shell', |
781 'type': 'executable', | 785 'type': 'executable', |
782 'dependencies': [ | 786 'dependencies': [ |
783 'v8' | 787 'v8' |
784 ], | 788 ], |
785 'sources': [ | 789 'sources': [ |
786 '../../samples/shell.cc', | 790 '../../samples/shell.cc', |
787 ], | 791 ], |
788 'conditions': [ | 792 'conditions': [ |
789 ['want_separate_host_toolset==1', { | 793 ['want_separate_host_toolset==1', { |
790 'toolsets': ['host'], | 794 'toolsets': ['host'], |
791 }, { | 795 }, { |
792 'toolsets': ['target'], | 796 'toolsets': ['target'], |
793 }], | 797 }], |
794 ['OS=="win"', { | 798 ['OS=="win"', { |
795 # This could be gotten by not setting chromium_code, if that's OK. | 799 # This could be gotten by not setting chromium_code, if that's OK. |
796 'defines': ['_CRT_SECURE_NO_WARNINGS'], | 800 'defines': ['_CRT_SECURE_NO_WARNINGS'], |
797 }], | 801 }], |
798 ['v8_compress_startup_data=="bz2"', { | 802 ['v8_compress_startup_data=="bz2"', { |
799 'libraries': [ | 803 'libraries': [ |
800 '-lbz2', | 804 '-lbz2', |
801 ]}], | 805 ] |
| 806 }], |
802 ], | 807 ], |
803 }, | 808 }, |
804 { | 809 { |
805 'target_name': 'preparser_lib', | 810 'target_name': 'preparser_lib', |
806 'type': '<(library)', | 811 'type': '<(library)', |
807 'include_dirs+': [ | 812 'include_dirs+': [ |
808 '../../src', | 813 '../../src', |
809 ], | 814 ], |
810 'sources': [ | 815 'sources': [ |
811 '../../include/v8-preparser.h', | 816 '../../include/v8-preparser.h', |
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
895 }], | 900 }], |
896 ], | 901 ], |
897 'dependencies': [ | 902 'dependencies': [ |
898 'v8' | 903 'v8' |
899 ], | 904 ], |
900 }, | 905 }, |
901 ], | 906 ], |
902 }], | 907 }], |
903 ], | 908 ], |
904 } | 909 } |
OLD | NEW |