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

Side by Side Diff: BUILD.gn

Issue 1219943002: Expose SIMD.Float32x4 type to Javascript. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Back out changes to include/v8.h 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 | « no previous file | include/v8.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 import("//build/config/android/config.gni") 5 import("//build/config/android/config.gni")
6 import("//build/config/arm.gni") 6 import("//build/config/arm.gni")
7 import("//build/config/mips.gni") 7 import("//build/config/mips.gni")
8 8
9 # Because standalone V8 builds are not supported, assume this is part of a 9 # Because standalone V8 builds are not supported, assume this is part of a
10 # Chromium build. 10 # Chromium build.
(...skipping 295 matching lines...) Expand 10 before | Expand all | Expand 10 after
306 "src/proxy.js", 306 "src/proxy.js",
307 "src/generator.js", 307 "src/generator.js",
308 "src/harmony-atomics.js", 308 "src/harmony-atomics.js",
309 "src/harmony-array-includes.js", 309 "src/harmony-array-includes.js",
310 "src/harmony-concat-spreadable.js", 310 "src/harmony-concat-spreadable.js",
311 "src/harmony-tostring.js", 311 "src/harmony-tostring.js",
312 "src/harmony-regexp.js", 312 "src/harmony-regexp.js",
313 "src/harmony-reflect.js", 313 "src/harmony-reflect.js",
314 "src/harmony-spread.js", 314 "src/harmony-spread.js",
315 "src/harmony-object.js", 315 "src/harmony-object.js",
316 "src/harmony-sharedarraybuffer.js" 316 "src/harmony-sharedarraybuffer.js",
317 "src/harmony-simd.js"
317 ] 318 ]
318 319
319 outputs = [ 320 outputs = [
320 "$target_gen_dir/experimental-libraries.cc", 321 "$target_gen_dir/experimental-libraries.cc",
321 ] 322 ]
322 323
323 args = [ 324 args = [
324 rebase_path("$target_gen_dir/experimental-libraries.cc", 325 rebase_path("$target_gen_dir/experimental-libraries.cc",
325 root_build_dir), 326 root_build_dir),
326 "EXPERIMENTAL", 327 "EXPERIMENTAL",
(...skipping 753 matching lines...) Expand 10 before | Expand all | Expand 10 after
1080 "src/runtime/runtime-json.cc", 1081 "src/runtime/runtime-json.cc",
1081 "src/runtime/runtime-literals.cc", 1082 "src/runtime/runtime-literals.cc",
1082 "src/runtime/runtime-liveedit.cc", 1083 "src/runtime/runtime-liveedit.cc",
1083 "src/runtime/runtime-maths.cc", 1084 "src/runtime/runtime-maths.cc",
1084 "src/runtime/runtime-numbers.cc", 1085 "src/runtime/runtime-numbers.cc",
1085 "src/runtime/runtime-object.cc", 1086 "src/runtime/runtime-object.cc",
1086 "src/runtime/runtime-observe.cc", 1087 "src/runtime/runtime-observe.cc",
1087 "src/runtime/runtime-proxy.cc", 1088 "src/runtime/runtime-proxy.cc",
1088 "src/runtime/runtime-regexp.cc", 1089 "src/runtime/runtime-regexp.cc",
1089 "src/runtime/runtime-scopes.cc", 1090 "src/runtime/runtime-scopes.cc",
1091 "src/runtime/runtime-simd.cc",
1090 "src/runtime/runtime-strings.cc", 1092 "src/runtime/runtime-strings.cc",
1091 "src/runtime/runtime-symbol.cc", 1093 "src/runtime/runtime-symbol.cc",
1092 "src/runtime/runtime-test.cc", 1094 "src/runtime/runtime-test.cc",
1093 "src/runtime/runtime-typedarray.cc", 1095 "src/runtime/runtime-typedarray.cc",
1094 "src/runtime/runtime-uri.cc", 1096 "src/runtime/runtime-uri.cc",
1095 "src/runtime/runtime-utils.h", 1097 "src/runtime/runtime-utils.h",
1096 "src/runtime/runtime.cc", 1098 "src/runtime/runtime.cc",
1097 "src/runtime/runtime.h", 1099 "src/runtime/runtime.h",
1098 "src/safepoint-table.cc", 1100 "src/safepoint-table.cc",
1099 "src/safepoint-table.h", 1101 "src/safepoint-table.h",
(...skipping 656 matching lines...) Expand 10 before | Expand all | Expand 10 after
1756 "src/d8-debug.cc", 1758 "src/d8-debug.cc",
1757 "src/d8-debug.h", 1759 "src/d8-debug.h",
1758 "$target_gen_dir/d8-js.cc", 1760 "$target_gen_dir/d8-js.cc",
1759 ] 1761 ]
1760 } 1762 }
1761 if (v8_enable_i18n_support) { 1763 if (v8_enable_i18n_support) {
1762 deps += [ "//third_party/icu" ] 1764 deps += [ "//third_party/icu" ]
1763 } 1765 }
1764 } 1766 }
1765 } 1767 }
OLDNEW
« no previous file with comments | « no previous file | include/v8.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698