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

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

Issue 90643003: Experimental implementation: Exposing SIMD instructions into JavaScript Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 years 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 | « test/mjsunit/simd/representation_change.js ('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 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 962 matching lines...) Expand 10 before | Expand all | Expand 10 after
973 'experimental_library_files': [ 973 'experimental_library_files': [
974 '../../src/macros.py', 974 '../../src/macros.py',
975 '../../src/symbol.js', 975 '../../src/symbol.js',
976 '../../src/proxy.js', 976 '../../src/proxy.js',
977 '../../src/collection.js', 977 '../../src/collection.js',
978 '../../src/object-observe.js', 978 '../../src/object-observe.js',
979 '../../src/generator.js', 979 '../../src/generator.js',
980 '../../src/array-iterator.js', 980 '../../src/array-iterator.js',
981 '../../src/harmony-string.js', 981 '../../src/harmony-string.js',
982 '../../src/harmony-array.js', 982 '../../src/harmony-array.js',
983 '../../src/harmony-math.js' 983 '../../src/harmony-math.js',
984 '../../src/simd128.js',
984 ], 985 ],
985 }, 986 },
986 'actions': [ 987 'actions': [
987 { 988 {
988 'action_name': 'js2c', 989 'action_name': 'js2c',
989 'inputs': [ 990 'inputs': [
990 '../../tools/js2c.py', 991 '../../tools/js2c.py',
991 '<@(library_files)', 992 '<@(library_files)',
992 '<@(i18n_library_files)', 993 '<@(i18n_library_files)',
993 ], 994 ],
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after
1099 }], 1100 }],
1100 ['v8_compress_startup_data=="bz2"', { 1101 ['v8_compress_startup_data=="bz2"', {
1101 'libraries': [ 1102 'libraries': [
1102 '-lbz2', 1103 '-lbz2',
1103 ] 1104 ]
1104 }], 1105 }],
1105 ], 1106 ],
1106 }, 1107 },
1107 ], 1108 ],
1108 } 1109 }
OLDNEW
« no previous file with comments | « test/mjsunit/simd/representation_change.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698