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

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

Issue 22715004: Version 3.20.15 (Closed) Base URL: https://v8.googlecode.com/svn/trunk
Patch Set: Add TypedArray API and correctness patches r16033 and r16084 Created 7 years, 4 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/grokdump.py ('k') | tools/run-tests.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 2012 the V8 project authors. All rights reserved. 1 # Copyright 2012 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 804 matching lines...) Expand 10 before | Expand all | Expand 10 after
815 'V8_SHARED', 815 'V8_SHARED',
816 ], 816 ],
817 }], 817 }],
818 ['v8_postmortem_support=="true"', { 818 ['v8_postmortem_support=="true"', {
819 'sources': [ 819 'sources': [
820 '<(SHARED_INTERMEDIATE_DIR)/debug-support.cc', 820 '<(SHARED_INTERMEDIATE_DIR)/debug-support.cc',
821 ] 821 ]
822 }], 822 }],
823 ['v8_enable_i18n_support==1', { 823 ['v8_enable_i18n_support==1', {
824 'sources': [ 824 'sources': [
825 '../../src/i18n.cc',
826 '../../src/i18n.h',
827 '../../src/extensions/i18n/break-iterator.cc', 825 '../../src/extensions/i18n/break-iterator.cc',
828 '../../src/extensions/i18n/break-iterator.h', 826 '../../src/extensions/i18n/break-iterator.h',
829 '../../src/extensions/i18n/collator.cc', 827 '../../src/extensions/i18n/collator.cc',
830 '../../src/extensions/i18n/collator.h', 828 '../../src/extensions/i18n/collator.h',
829 '../../src/extensions/i18n/date-format.cc',
830 '../../src/extensions/i18n/date-format.h',
831 '../../src/extensions/i18n/i18n-extension.cc', 831 '../../src/extensions/i18n/i18n-extension.cc',
832 '../../src/extensions/i18n/i18n-extension.h', 832 '../../src/extensions/i18n/i18n-extension.h',
833 '../../src/extensions/i18n/i18n-utils.cc', 833 '../../src/extensions/i18n/i18n-utils.cc',
834 '../../src/extensions/i18n/i18n-utils.h', 834 '../../src/extensions/i18n/i18n-utils.h',
835 '../../src/extensions/i18n/locale.cc',
836 '../../src/extensions/i18n/locale.h',
835 '../../src/extensions/i18n/number-format.cc', 837 '../../src/extensions/i18n/number-format.cc',
836 '../../src/extensions/i18n/number-format.h', 838 '../../src/extensions/i18n/number-format.h',
837 ], 839 ],
838 'dependencies': [ 840 'dependencies': [
839 '<(DEPTH)/third_party/icu/icu.gyp:icui18n', 841 '<(DEPTH)/third_party/icu/icu.gyp:icui18n',
840 '<(DEPTH)/third_party/icu/icu.gyp:icuuc', 842 '<(DEPTH)/third_party/icu/icu.gyp:icuuc',
841 ] 843 ]
842 }], 844 }],
843 ['OS=="win" and v8_enable_i18n_support==1', { 845 ['OS=="win" and v8_enable_i18n_support==1', {
844 'dependencies': [ 846 'dependencies': [
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
898 'experimental_library_files': [ 900 'experimental_library_files': [
899 '../../src/macros.py', 901 '../../src/macros.py',
900 '../../src/symbol.js', 902 '../../src/symbol.js',
901 '../../src/proxy.js', 903 '../../src/proxy.js',
902 '../../src/collection.js', 904 '../../src/collection.js',
903 '../../src/object-observe.js', 905 '../../src/object-observe.js',
904 '../../src/arraybuffer.js', 906 '../../src/arraybuffer.js',
905 '../../src/typedarray.js', 907 '../../src/typedarray.js',
906 '../../src/generator.js', 908 '../../src/generator.js',
907 '../../src/array-iterator.js', 909 '../../src/array-iterator.js',
908 '../../src/harmony-string.js', 910 '../../src/harmony-string.js'
909 '../../src/harmony-array.js',
910 ], 911 ],
911 'i18n_library_files': [ 912 'i18n_library_files': [
912 '../../src/extensions/i18n/header.js', 913 '../../src/extensions/i18n/header.js',
913 '../../src/extensions/i18n/globals.js', 914 '../../src/extensions/i18n/globals.js',
914 '../../src/extensions/i18n/locale.js', 915 '../../src/extensions/i18n/locale.js',
915 '../../src/extensions/i18n/collator.js', 916 '../../src/extensions/i18n/collator.js',
916 '../../src/extensions/i18n/number-format.js', 917 '../../src/extensions/i18n/number-format.js',
917 '../../src/extensions/i18n/date-format.js', 918 '../../src/extensions/i18n/date-format.js',
918 '../../src/extensions/i18n/break-iterator.js', 919 '../../src/extensions/i18n/break-iterator.js',
919 '../../src/extensions/i18n/i18n-utils.js', 920 '../../src/extensions/i18n/i18n-utils.js',
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after
1035 }], 1036 }],
1036 ['v8_compress_startup_data=="bz2"', { 1037 ['v8_compress_startup_data=="bz2"', {
1037 'libraries': [ 1038 'libraries': [
1038 '-lbz2', 1039 '-lbz2',
1039 ] 1040 ]
1040 }], 1041 }],
1041 ], 1042 ],
1042 }, 1043 },
1043 ], 1044 ],
1044 } 1045 }
OLDNEW
« no previous file with comments | « tools/grokdump.py ('k') | tools/run-tests.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698