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

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

Issue 1160443009: Add SIMD.Float32x4 functions. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fix compile. Created 5 years, 6 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
« src/harmony-simd.js ('K') | « test/simdjs/harness-adapt.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 837 matching lines...) Expand 10 before | Expand all | Expand 10 after
848 '../../src/runtime/runtime-json.cc', 848 '../../src/runtime/runtime-json.cc',
849 '../../src/runtime/runtime-literals.cc', 849 '../../src/runtime/runtime-literals.cc',
850 '../../src/runtime/runtime-liveedit.cc', 850 '../../src/runtime/runtime-liveedit.cc',
851 '../../src/runtime/runtime-maths.cc', 851 '../../src/runtime/runtime-maths.cc',
852 '../../src/runtime/runtime-numbers.cc', 852 '../../src/runtime/runtime-numbers.cc',
853 '../../src/runtime/runtime-object.cc', 853 '../../src/runtime/runtime-object.cc',
854 '../../src/runtime/runtime-observe.cc', 854 '../../src/runtime/runtime-observe.cc',
855 '../../src/runtime/runtime-proxy.cc', 855 '../../src/runtime/runtime-proxy.cc',
856 '../../src/runtime/runtime-regexp.cc', 856 '../../src/runtime/runtime-regexp.cc',
857 '../../src/runtime/runtime-scopes.cc', 857 '../../src/runtime/runtime-scopes.cc',
858 '../../src/runtime/runtime-simd.cc',
858 '../../src/runtime/runtime-strings.cc', 859 '../../src/runtime/runtime-strings.cc',
859 '../../src/runtime/runtime-symbol.cc', 860 '../../src/runtime/runtime-symbol.cc',
860 '../../src/runtime/runtime-test.cc', 861 '../../src/runtime/runtime-test.cc',
861 '../../src/runtime/runtime-typedarray.cc', 862 '../../src/runtime/runtime-typedarray.cc',
862 '../../src/runtime/runtime-uri.cc', 863 '../../src/runtime/runtime-uri.cc',
863 '../../src/runtime/runtime-utils.h', 864 '../../src/runtime/runtime-utils.h',
864 '../../src/runtime/runtime.cc', 865 '../../src/runtime/runtime.cc',
865 '../../src/runtime/runtime.h', 866 '../../src/runtime/runtime.h',
866 '../../src/safepoint-table.cc', 867 '../../src/safepoint-table.cc',
867 '../../src/safepoint-table.h', 868 '../../src/safepoint-table.h',
(...skipping 880 matching lines...) Expand 10 before | Expand all | Expand 10 after
1748 '../../src/harmony-atomics.js', 1749 '../../src/harmony-atomics.js',
1749 '../../src/harmony-array.js', 1750 '../../src/harmony-array.js',
1750 '../../src/harmony-array-includes.js', 1751 '../../src/harmony-array-includes.js',
1751 '../../src/harmony-tostring.js', 1752 '../../src/harmony-tostring.js',
1752 '../../src/harmony-typedarray.js', 1753 '../../src/harmony-typedarray.js',
1753 '../../src/harmony-regexp.js', 1754 '../../src/harmony-regexp.js',
1754 '../../src/harmony-reflect.js', 1755 '../../src/harmony-reflect.js',
1755 '../../src/harmony-spread.js', 1756 '../../src/harmony-spread.js',
1756 '../../src/harmony-object.js', 1757 '../../src/harmony-object.js',
1757 '../../src/harmony-sharedarraybuffer.js', 1758 '../../src/harmony-sharedarraybuffer.js',
1759 '../../src/harmony-simd.js',
1758 ], 1760 ],
1759 'libraries_bin_file': '<(SHARED_INTERMEDIATE_DIR)/libraries.bin', 1761 'libraries_bin_file': '<(SHARED_INTERMEDIATE_DIR)/libraries.bin',
1760 'libraries_experimental_bin_file': '<(SHARED_INTERMEDIATE_DIR)/libraries -experimental.bin', 1762 'libraries_experimental_bin_file': '<(SHARED_INTERMEDIATE_DIR)/libraries -experimental.bin',
1761 'libraries_extras_bin_file': '<(SHARED_INTERMEDIATE_DIR)/libraries-extra s.bin', 1763 'libraries_extras_bin_file': '<(SHARED_INTERMEDIATE_DIR)/libraries-extra s.bin',
1762 }, 1764 },
1763 'actions': [ 1765 'actions': [
1764 { 1766 {
1765 'action_name': 'js2c', 1767 'action_name': 'js2c',
1766 'inputs': [ 1768 'inputs': [
1767 '../../tools/js2c.py', 1769 '../../tools/js2c.py',
(...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after
1887 }], 1889 }],
1888 ['want_separate_host_toolset==1', { 1890 ['want_separate_host_toolset==1', {
1889 'toolsets': ['host'], 1891 'toolsets': ['host'],
1890 }, { 1892 }, {
1891 'toolsets': ['target'], 1893 'toolsets': ['target'],
1892 }], 1894 }],
1893 ], 1895 ],
1894 }, 1896 },
1895 ], 1897 ],
1896 } 1898 }
OLDNEW
« src/harmony-simd.js ('K') | « test/simdjs/harness-adapt.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698