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

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

Issue 1219943002: Expose SIMD.Float32x4 type to Javascript. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Andreas' review comments 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
« test/mjsunit/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 853 matching lines...) Expand 10 before | Expand all | Expand 10 after
864 '../../src/runtime/runtime-json.cc', 864 '../../src/runtime/runtime-json.cc',
865 '../../src/runtime/runtime-literals.cc', 865 '../../src/runtime/runtime-literals.cc',
866 '../../src/runtime/runtime-liveedit.cc', 866 '../../src/runtime/runtime-liveedit.cc',
867 '../../src/runtime/runtime-maths.cc', 867 '../../src/runtime/runtime-maths.cc',
868 '../../src/runtime/runtime-numbers.cc', 868 '../../src/runtime/runtime-numbers.cc',
869 '../../src/runtime/runtime-object.cc', 869 '../../src/runtime/runtime-object.cc',
870 '../../src/runtime/runtime-observe.cc', 870 '../../src/runtime/runtime-observe.cc',
871 '../../src/runtime/runtime-proxy.cc', 871 '../../src/runtime/runtime-proxy.cc',
872 '../../src/runtime/runtime-regexp.cc', 872 '../../src/runtime/runtime-regexp.cc',
873 '../../src/runtime/runtime-scopes.cc', 873 '../../src/runtime/runtime-scopes.cc',
874 '../../src/runtime/runtime-simd.cc',
874 '../../src/runtime/runtime-strings.cc', 875 '../../src/runtime/runtime-strings.cc',
875 '../../src/runtime/runtime-symbol.cc', 876 '../../src/runtime/runtime-symbol.cc',
876 '../../src/runtime/runtime-test.cc', 877 '../../src/runtime/runtime-test.cc',
877 '../../src/runtime/runtime-typedarray.cc', 878 '../../src/runtime/runtime-typedarray.cc',
878 '../../src/runtime/runtime-uri.cc', 879 '../../src/runtime/runtime-uri.cc',
879 '../../src/runtime/runtime-utils.h', 880 '../../src/runtime/runtime-utils.h',
880 '../../src/runtime/runtime.cc', 881 '../../src/runtime/runtime.cc',
881 '../../src/runtime/runtime.h', 882 '../../src/runtime/runtime.h',
882 '../../src/safepoint-table.cc', 883 '../../src/safepoint-table.cc',
883 '../../src/safepoint-table.h', 884 '../../src/safepoint-table.h',
(...skipping 895 matching lines...) Expand 10 before | Expand all | Expand 10 after
1779 '../../src/harmony-atomics.js', 1780 '../../src/harmony-atomics.js',
1780 '../../src/harmony-array.js', 1781 '../../src/harmony-array.js',
1781 '../../src/harmony-array-includes.js', 1782 '../../src/harmony-array-includes.js',
1782 '../../src/harmony-tostring.js', 1783 '../../src/harmony-tostring.js',
1783 '../../src/harmony-typedarray.js', 1784 '../../src/harmony-typedarray.js',
1784 '../../src/harmony-regexp.js', 1785 '../../src/harmony-regexp.js',
1785 '../../src/harmony-reflect.js', 1786 '../../src/harmony-reflect.js',
1786 '../../src/harmony-spread.js', 1787 '../../src/harmony-spread.js',
1787 '../../src/harmony-object.js', 1788 '../../src/harmony-object.js',
1788 '../../src/harmony-sharedarraybuffer.js', 1789 '../../src/harmony-sharedarraybuffer.js',
1790 '../../src/harmony-simd.js',
1789 ], 1791 ],
1790 'libraries_bin_file': '<(SHARED_INTERMEDIATE_DIR)/libraries.bin', 1792 'libraries_bin_file': '<(SHARED_INTERMEDIATE_DIR)/libraries.bin',
1791 'libraries_experimental_bin_file': '<(SHARED_INTERMEDIATE_DIR)/libraries -experimental.bin', 1793 'libraries_experimental_bin_file': '<(SHARED_INTERMEDIATE_DIR)/libraries -experimental.bin',
1792 'libraries_extras_bin_file': '<(SHARED_INTERMEDIATE_DIR)/libraries-extra s.bin', 1794 'libraries_extras_bin_file': '<(SHARED_INTERMEDIATE_DIR)/libraries-extra s.bin',
1793 }, 1795 },
1794 'actions': [ 1796 'actions': [
1795 { 1797 {
1796 'action_name': 'js2c', 1798 'action_name': 'js2c',
1797 'inputs': [ 1799 'inputs': [
1798 '../../tools/js2c.py', 1800 '../../tools/js2c.py',
(...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after
1918 }], 1920 }],
1919 ['want_separate_host_toolset==1', { 1921 ['want_separate_host_toolset==1', {
1920 'toolsets': ['host'], 1922 'toolsets': ['host'],
1921 }, { 1923 }, {
1922 'toolsets': ['target'], 1924 'toolsets': ['target'],
1923 }], 1925 }],
1924 ], 1926 ],
1925 }, 1927 },
1926 ], 1928 ],
1927 } 1929 }
OLDNEW
« test/mjsunit/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