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

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

Issue 7860035: Merge bleeding edge up to 9192 into the GC branch. (Closed) Base URL: https://v8.googlecode.com/svn/branches/experimental/gc
Patch Set: Created 9 years, 3 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/gdb-v8-support.py ('k') | tools/presubmit.py » ('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 270 matching lines...) Expand 10 before | Expand all | Expand 10 after
281 '../../src/dateparser-inl.h', 281 '../../src/dateparser-inl.h',
282 '../../src/debug.cc', 282 '../../src/debug.cc',
283 '../../src/debug.h', 283 '../../src/debug.h',
284 '../../src/debug-agent.cc', 284 '../../src/debug-agent.cc',
285 '../../src/debug-agent.h', 285 '../../src/debug-agent.h',
286 '../../src/deoptimizer.cc', 286 '../../src/deoptimizer.cc',
287 '../../src/deoptimizer.h', 287 '../../src/deoptimizer.h',
288 '../../src/disasm.h', 288 '../../src/disasm.h',
289 '../../src/disassembler.cc', 289 '../../src/disassembler.cc',
290 '../../src/disassembler.h', 290 '../../src/disassembler.h',
291 '../../src/dtoa.cc',
292 '../../src/dtoa.h',
293 '../../src/diy-fp.cc', 291 '../../src/diy-fp.cc',
294 '../../src/diy-fp.h', 292 '../../src/diy-fp.h',
295 '../../src/double.h', 293 '../../src/double.h',
294 '../../src/dtoa.cc',
295 '../../src/dtoa.h',
296 '../../src/elements.cc', 296 '../../src/elements.cc',
297 '../../src/elements.h', 297 '../../src/elements.h',
298 '../../src/execution.cc', 298 '../../src/execution.cc',
299 '../../src/execution.h', 299 '../../src/execution.h',
300 '../../src/factory.cc', 300 '../../src/factory.cc',
301 '../../src/factory.h', 301 '../../src/factory.h',
302 '../../src/fast-dtoa.cc', 302 '../../src/fast-dtoa.cc',
303 '../../src/fast-dtoa.h', 303 '../../src/fast-dtoa.h',
304 '../../src/flag-definitions.h', 304 '../../src/flag-definitions.h',
305 '../../src/fixed-dtoa.cc', 305 '../../src/fixed-dtoa.cc',
(...skipping 335 matching lines...) Expand 10 before | Expand all | Expand 10 after
641 ], 641 ],
642 ['OS=="mac"', { 642 ['OS=="mac"', {
643 'sources': [ 643 'sources': [
644 '../../src/platform-macos.cc', 644 '../../src/platform-macos.cc',
645 '../../src/platform-posix.cc' 645 '../../src/platform-posix.cc'
646 ]}, 646 ]},
647 ], 647 ],
648 ['OS=="win"', { 648 ['OS=="win"', {
649 'sources': [ 649 'sources': [
650 '../../src/platform-win32.cc', 650 '../../src/platform-win32.cc',
651 '../../src/win32-math.cc',
652 '../../src/win32-math.h',
651 ], 653 ],
652 'msvs_disabled_warnings': [4351, 4355, 4800], 654 'msvs_disabled_warnings': [4351, 4355, 4800],
653 'link_settings': { 655 'link_settings': {
654 'libraries': [ '-lwinmm.lib' ], 656 'libraries': [ '-lwinmm.lib', '-lws2_32.lib' ],
655 }, 657 },
656 }], 658 }],
657 ['component=="shared_library"', { 659 ['component=="shared_library"', {
658 'defines': [ 660 'defines': [
659 'BUILDING_V8_SHARED', 661 'BUILDING_V8_SHARED',
660 'V8_SHARED', 662 'V8_SHARED',
661 ], 663 ],
662 }], 664 }],
663 ], 665 ],
664 }, 666 },
(...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after
785 ]}], 787 ]}],
786 ], 788 ],
787 }, 789 },
788 { 790 {
789 'target_name': 'preparser_lib', 791 'target_name': 'preparser_lib',
790 'type': '<(library)', 792 'type': '<(library)',
791 'include_dirs+': [ 793 'include_dirs+': [
792 '../../src', 794 '../../src',
793 ], 795 ],
794 'sources': [ 796 'sources': [
797 '../../include/v8-preparser.h',
798 '../../include/v8stdint.h',
795 '../../src/allocation.cc', 799 '../../src/allocation.cc',
800 '../../src/allocation.h',
796 '../../src/bignum.cc', 801 '../../src/bignum.cc',
802 '../../src/bignum.h',
803 '../../src/bignum-dtoa.cc',
804 '../../src/bignum-dtoa.h',
797 '../../src/cached-powers.cc', 805 '../../src/cached-powers.cc',
806 '../../src/cached-powers.h',
807 '../../src/char-predicates-inl.h',
808 '../../src/char-predicates.h',
809 '../../src/checks.h',
810 '../../src/conversions-inl.h',
798 '../../src/conversions.cc', 811 '../../src/conversions.cc',
812 '../../src/conversions.h',
813 '../../src/diy-fp.cc',
814 '../../src/diy-fp.h',
815 '../../src/double.h',
816 '../../src/dtoa.cc',
817 '../../src/dtoa.h',
818 '../../src/fast-dtoa.cc',
819 '../../src/fast-dtoa.h',
820 '../../src/fixed-dtoa.cc',
821 '../../src/fixed-dtoa.h',
822 '../../src/globals.h',
799 '../../src/hashmap.cc', 823 '../../src/hashmap.cc',
824 '../../src/hashmap.h',
825 '../../src/list-inl.h',
826 '../../src/list.h',
827 '../../src/preparse-data-format.h',
800 '../../src/preparse-data.cc', 828 '../../src/preparse-data.cc',
829 '../../src/preparse-data.h',
801 '../../src/preparser.cc', 830 '../../src/preparser.cc',
831 '../../src/preparser.h',
802 '../../src/preparser-api.cc', 832 '../../src/preparser-api.cc',
803 '../../src/scanner-base.cc', 833 '../../src/scanner-base.cc',
834 '../../src/scanner-base.h',
804 '../../src/strtod.cc', 835 '../../src/strtod.cc',
836 '../../src/strtod.h',
805 '../../src/token.cc', 837 '../../src/token.cc',
838 '../../src/token.h',
839 '../../src/unicode-inl.h',
806 '../../src/unicode.cc', 840 '../../src/unicode.cc',
841 '../../src/unicode.h',
842 '../../src/utils-inl.h',
807 '../../src/utils.cc', 843 '../../src/utils.cc',
844 '../../src/utils.h',
845 ],
846 'conditions': [
847 ['OS=="win"', {
848 'sources': [
849 '../../src/win32-math.cc',
850 '../../src/win32-math.h',
851 ]}],
808 ], 852 ],
809 }, 853 },
810 ], 854 ],
811 }, { # use_system_v8 != 0 855 }, { # use_system_v8 != 0
812 'targets': [ 856 'targets': [
813 { 857 {
814 'target_name': 'v8', 858 'target_name': 'v8',
815 'type': 'settings', 859 'type': 'settings',
816 'conditions': [ 860 'conditions': [
817 ['want_separate_host_toolset==1', { 861 ['want_separate_host_toolset==1', {
(...skipping 19 matching lines...) Expand all
837 }], 881 }],
838 ], 882 ],
839 'dependencies': [ 883 'dependencies': [
840 'v8' 884 'v8'
841 ], 885 ],
842 }, 886 },
843 ], 887 ],
844 }], 888 }],
845 ], 889 ],
846 } 890 }
OLDNEW
« no previous file with comments | « tools/gdb-v8-support.py ('k') | tools/presubmit.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698