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

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

Issue 7782023: Reintroduce duplicate identifier detection in preparser. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Removed dependency on platform.h in conversions-inl.h 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
« src/globals.h ('K') | « test/preparser/testcfg.py ('k') | no next file » | 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 330 matching lines...) Expand 10 before | Expand all | Expand 10 after
636 ], 636 ],
637 ['OS=="mac"', { 637 ['OS=="mac"', {
638 'sources': [ 638 'sources': [
639 '../../src/platform-macos.cc', 639 '../../src/platform-macos.cc',
640 '../../src/platform-posix.cc' 640 '../../src/platform-posix.cc'
641 ]}, 641 ]},
642 ], 642 ],
643 ['OS=="win"', { 643 ['OS=="win"', {
644 'sources': [ 644 'sources': [
645 '../../src/platform-win32.cc', 645 '../../src/platform-win32.cc',
646 '../../src/win32-math.cc',
647 '../../src/win32-math.h',
646 ], 648 ],
647 'msvs_disabled_warnings': [4351, 4355, 4800], 649 'msvs_disabled_warnings': [4351, 4355, 4800],
648 'link_settings': { 650 'link_settings': {
649 'libraries': [ '-lwinmm.lib', '-lws2_32.lib' ], 651 'libraries': [ '-lwinmm.lib', '-lws2_32.lib' ],
650 }, 652 },
651 }], 653 }],
652 ['component=="shared_library"', { 654 ['component=="shared_library"', {
653 'defines': [ 655 'defines': [
654 'BUILDING_V8_SHARED', 656 'BUILDING_V8_SHARED',
655 'V8_SHARED', 657 'V8_SHARED',
(...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after
780 ]}], 782 ]}],
781 ], 783 ],
782 }, 784 },
783 { 785 {
784 'target_name': 'preparser_lib', 786 'target_name': 'preparser_lib',
785 'type': '<(library)', 787 'type': '<(library)',
786 'include_dirs+': [ 788 'include_dirs+': [
787 '../../src', 789 '../../src',
788 ], 790 ],
789 'sources': [ 791 'sources': [
792 '../../include/v8-preparser.h',
793 '../../include/v8stdint.h',
790 '../../src/allocation.cc', 794 '../../src/allocation.cc',
795 '../../src/allocation.h',
791 '../../src/bignum.cc', 796 '../../src/bignum.cc',
797 '../../src/bignum.h',
798 '../../src/bignum-dtoa.cc',
799 '../../src/bignum-dtoa.h',
792 '../../src/cached-powers.cc', 800 '../../src/cached-powers.cc',
801 '../../src/cached-powers.h',
802 '../../src/char-predicates-inl.h',
803 '../../src/char-predicates.h',
804 '../../src/checks.h',
805 '../../src/conversions-inl.h',
793 '../../src/conversions.cc', 806 '../../src/conversions.cc',
807 '../../src/conversions.h',
808 '../../src/diy-fp.cc',
809 '../../src/diy-fp.h',
810 '../../src/double.h',
811 '../../src/dtoa.cc',
812 '../../src/dtoa.h',
813 '../../src/fast-dtoa.cc',
814 '../../src/fast-dtoa.h',
815 '../../src/fixed-dtoa.cc',
816 '../../src/fixed-dtoa.h',
817 '../../src/globals.h',
794 '../../src/hashmap.cc', 818 '../../src/hashmap.cc',
819 '../../src/hashmap.h',
820 '../../src/list-inl.h',
821 '../../src/list.h',
822 '../../src/preparse-data-format.h',
795 '../../src/preparse-data.cc', 823 '../../src/preparse-data.cc',
824 '../../src/preparse-data.h',
796 '../../src/preparser.cc', 825 '../../src/preparser.cc',
826 '../../src/preparser.h',
797 '../../src/preparser-api.cc', 827 '../../src/preparser-api.cc',
798 '../../src/scanner-base.cc', 828 '../../src/scanner-base.cc',
829 '../../src/scanner-base.h',
799 '../../src/strtod.cc', 830 '../../src/strtod.cc',
831 '../../src/strtod.h',
800 '../../src/token.cc', 832 '../../src/token.cc',
833 '../../src/token.h',
834 '../../src/unicode-inl.h',
801 '../../src/unicode.cc', 835 '../../src/unicode.cc',
836 '../../src/unicode.h',
837 '../../src/utils-inl.h',
802 '../../src/utils.cc', 838 '../../src/utils.cc',
839 '../../src/utils.h',
840 ],
841 'conditions': [
842 ['OS=="win"', {
843 'sources': [
844 '../../src/win32-math.cc',
845 '../../src/win32-math.h',
846 ]}],
803 ], 847 ],
804 }, 848 },
805 ], 849 ],
806 }, { # use_system_v8 != 0 850 }, { # use_system_v8 != 0
807 'targets': [ 851 'targets': [
808 { 852 {
809 'target_name': 'v8', 853 'target_name': 'v8',
810 'type': 'settings', 854 'type': 'settings',
811 'conditions': [ 855 'conditions': [
812 ['want_separate_host_toolset==1', { 856 ['want_separate_host_toolset==1', {
(...skipping 19 matching lines...) Expand all
832 }], 876 }],
833 ], 877 ],
834 'dependencies': [ 878 'dependencies': [
835 'v8' 879 'v8'
836 ], 880 ],
837 }, 881 },
838 ], 882 ],
839 }], 883 }],
840 ], 884 ],
841 } 885 }
OLDNEW
« src/globals.h ('K') | « test/preparser/testcfg.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698