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

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: Tests working. Created 5 years, 5 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
« no previous file with comments | « 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 841 matching lines...) Expand 10 before | Expand all | Expand 10 after
852 '../../src/runtime/runtime-json.cc', 852 '../../src/runtime/runtime-json.cc',
853 '../../src/runtime/runtime-literals.cc', 853 '../../src/runtime/runtime-literals.cc',
854 '../../src/runtime/runtime-liveedit.cc', 854 '../../src/runtime/runtime-liveedit.cc',
855 '../../src/runtime/runtime-maths.cc', 855 '../../src/runtime/runtime-maths.cc',
856 '../../src/runtime/runtime-numbers.cc', 856 '../../src/runtime/runtime-numbers.cc',
857 '../../src/runtime/runtime-object.cc', 857 '../../src/runtime/runtime-object.cc',
858 '../../src/runtime/runtime-observe.cc', 858 '../../src/runtime/runtime-observe.cc',
859 '../../src/runtime/runtime-proxy.cc', 859 '../../src/runtime/runtime-proxy.cc',
860 '../../src/runtime/runtime-regexp.cc', 860 '../../src/runtime/runtime-regexp.cc',
861 '../../src/runtime/runtime-scopes.cc', 861 '../../src/runtime/runtime-scopes.cc',
862 '../../src/runtime/runtime-simd.cc',
862 '../../src/runtime/runtime-strings.cc', 863 '../../src/runtime/runtime-strings.cc',
863 '../../src/runtime/runtime-symbol.cc', 864 '../../src/runtime/runtime-symbol.cc',
864 '../../src/runtime/runtime-test.cc', 865 '../../src/runtime/runtime-test.cc',
865 '../../src/runtime/runtime-typedarray.cc', 866 '../../src/runtime/runtime-typedarray.cc',
866 '../../src/runtime/runtime-uri.cc', 867 '../../src/runtime/runtime-uri.cc',
867 '../../src/runtime/runtime-utils.h', 868 '../../src/runtime/runtime-utils.h',
868 '../../src/runtime/runtime.cc', 869 '../../src/runtime/runtime.cc',
869 '../../src/runtime/runtime.h', 870 '../../src/runtime/runtime.h',
870 '../../src/safepoint-table.cc', 871 '../../src/safepoint-table.cc',
871 '../../src/safepoint-table.h', 872 '../../src/safepoint-table.h',
(...skipping 884 matching lines...) Expand 10 before | Expand all | Expand 10 after
1756 '../../src/harmony-atomics.js', 1757 '../../src/harmony-atomics.js',
1757 '../../src/harmony-array.js', 1758 '../../src/harmony-array.js',
1758 '../../src/harmony-array-includes.js', 1759 '../../src/harmony-array-includes.js',
1759 '../../src/harmony-tostring.js', 1760 '../../src/harmony-tostring.js',
1760 '../../src/harmony-typedarray.js', 1761 '../../src/harmony-typedarray.js',
1761 '../../src/harmony-regexp.js', 1762 '../../src/harmony-regexp.js',
1762 '../../src/harmony-reflect.js', 1763 '../../src/harmony-reflect.js',
1763 '../../src/harmony-spread.js', 1764 '../../src/harmony-spread.js',
1764 '../../src/harmony-object.js', 1765 '../../src/harmony-object.js',
1765 '../../src/harmony-sharedarraybuffer.js', 1766 '../../src/harmony-sharedarraybuffer.js',
1767 '../../src/harmony-simd.js',
1766 ], 1768 ],
1767 'libraries_bin_file': '<(SHARED_INTERMEDIATE_DIR)/libraries.bin', 1769 'libraries_bin_file': '<(SHARED_INTERMEDIATE_DIR)/libraries.bin',
1768 'libraries_experimental_bin_file': '<(SHARED_INTERMEDIATE_DIR)/libraries -experimental.bin', 1770 'libraries_experimental_bin_file': '<(SHARED_INTERMEDIATE_DIR)/libraries -experimental.bin',
1769 'libraries_extras_bin_file': '<(SHARED_INTERMEDIATE_DIR)/libraries-extra s.bin', 1771 'libraries_extras_bin_file': '<(SHARED_INTERMEDIATE_DIR)/libraries-extra s.bin',
1770 }, 1772 },
1771 'actions': [ 1773 'actions': [
1772 { 1774 {
1773 'action_name': 'js2c', 1775 'action_name': 'js2c',
1774 'inputs': [ 1776 'inputs': [
1775 '../../tools/js2c.py', 1777 '../../tools/js2c.py',
(...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after
1895 }], 1897 }],
1896 ['want_separate_host_toolset==1', { 1898 ['want_separate_host_toolset==1', {
1897 'toolsets': ['host'], 1899 'toolsets': ['host'],
1898 }, { 1900 }, {
1899 'toolsets': ['target'], 1901 'toolsets': ['target'],
1900 }], 1902 }],
1901 ], 1903 ],
1902 }, 1904 },
1903 ], 1905 ],
1904 } 1906 }
OLDNEW
« no previous file with comments | « test/simdjs/harness-adapt.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698