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

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: SameValue, SameValueZero, and tests. 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/samevalue.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 861 matching lines...) Expand 10 before | Expand all | Expand 10 after
872 '../../src/runtime/runtime-json.cc', 872 '../../src/runtime/runtime-json.cc',
873 '../../src/runtime/runtime-literals.cc', 873 '../../src/runtime/runtime-literals.cc',
874 '../../src/runtime/runtime-liveedit.cc', 874 '../../src/runtime/runtime-liveedit.cc',
875 '../../src/runtime/runtime-maths.cc', 875 '../../src/runtime/runtime-maths.cc',
876 '../../src/runtime/runtime-numbers.cc', 876 '../../src/runtime/runtime-numbers.cc',
877 '../../src/runtime/runtime-object.cc', 877 '../../src/runtime/runtime-object.cc',
878 '../../src/runtime/runtime-observe.cc', 878 '../../src/runtime/runtime-observe.cc',
879 '../../src/runtime/runtime-proxy.cc', 879 '../../src/runtime/runtime-proxy.cc',
880 '../../src/runtime/runtime-regexp.cc', 880 '../../src/runtime/runtime-regexp.cc',
881 '../../src/runtime/runtime-scopes.cc', 881 '../../src/runtime/runtime-scopes.cc',
882 '../../src/runtime/runtime-simd.cc',
882 '../../src/runtime/runtime-strings.cc', 883 '../../src/runtime/runtime-strings.cc',
883 '../../src/runtime/runtime-symbol.cc', 884 '../../src/runtime/runtime-symbol.cc',
884 '../../src/runtime/runtime-test.cc', 885 '../../src/runtime/runtime-test.cc',
885 '../../src/runtime/runtime-typedarray.cc', 886 '../../src/runtime/runtime-typedarray.cc',
886 '../../src/runtime/runtime-uri.cc', 887 '../../src/runtime/runtime-uri.cc',
887 '../../src/runtime/runtime-utils.h', 888 '../../src/runtime/runtime-utils.h',
888 '../../src/runtime/runtime.cc', 889 '../../src/runtime/runtime.cc',
889 '../../src/runtime/runtime.h', 890 '../../src/runtime/runtime.h',
890 '../../src/safepoint-table.cc', 891 '../../src/safepoint-table.cc',
891 '../../src/safepoint-table.h', 892 '../../src/safepoint-table.h',
(...skipping 895 matching lines...) Expand 10 before | Expand all | Expand 10 after
1787 '../../src/proxy.js', 1788 '../../src/proxy.js',
1788 '../../src/generator.js', 1789 '../../src/generator.js',
1789 '../../src/harmony-atomics.js', 1790 '../../src/harmony-atomics.js',
1790 '../../src/harmony-array-includes.js', 1791 '../../src/harmony-array-includes.js',
1791 '../../src/harmony-tostring.js', 1792 '../../src/harmony-tostring.js',
1792 '../../src/harmony-regexp.js', 1793 '../../src/harmony-regexp.js',
1793 '../../src/harmony-reflect.js', 1794 '../../src/harmony-reflect.js',
1794 '../../src/harmony-spread.js', 1795 '../../src/harmony-spread.js',
1795 '../../src/harmony-object.js', 1796 '../../src/harmony-object.js',
1796 '../../src/harmony-sharedarraybuffer.js', 1797 '../../src/harmony-sharedarraybuffer.js',
1798 '../../src/harmony-simd.js',
1797 ], 1799 ],
1798 'libraries_bin_file': '<(SHARED_INTERMEDIATE_DIR)/libraries.bin', 1800 'libraries_bin_file': '<(SHARED_INTERMEDIATE_DIR)/libraries.bin',
1799 'libraries_experimental_bin_file': '<(SHARED_INTERMEDIATE_DIR)/libraries -experimental.bin', 1801 'libraries_experimental_bin_file': '<(SHARED_INTERMEDIATE_DIR)/libraries -experimental.bin',
1800 'libraries_extras_bin_file': '<(SHARED_INTERMEDIATE_DIR)/libraries-extra s.bin', 1802 'libraries_extras_bin_file': '<(SHARED_INTERMEDIATE_DIR)/libraries-extra s.bin',
1801 }, 1803 },
1802 'actions': [ 1804 'actions': [
1803 { 1805 {
1804 'action_name': 'js2c', 1806 'action_name': 'js2c',
1805 'inputs': [ 1807 'inputs': [
1806 '../../tools/js2c.py', 1808 '../../tools/js2c.py',
(...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after
1926 }], 1928 }],
1927 ['want_separate_host_toolset==1', { 1929 ['want_separate_host_toolset==1', {
1928 'toolsets': ['host'], 1930 'toolsets': ['host'],
1929 }, { 1931 }, {
1930 'toolsets': ['target'], 1932 'toolsets': ['target'],
1931 }], 1933 }],
1932 ], 1934 ],
1933 }, 1935 },
1934 ], 1936 ],
1935 } 1937 }
OLDNEW
« test/mjsunit/samevalue.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