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

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: 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') | include/v8.h » ('J')
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 260 matching lines...) Expand 10 before | Expand all | Expand 10 after
271 "src/generator.js", 271 "src/generator.js",
272 "src/harmony-atomics.js", 272 "src/harmony-atomics.js",
273 "src/harmony-array.js", 273 "src/harmony-array.js",
274 "src/harmony-array-includes.js", 274 "src/harmony-array-includes.js",
275 "src/harmony-typedarray.js", 275 "src/harmony-typedarray.js",
276 "src/harmony-tostring.js", 276 "src/harmony-tostring.js",
277 "src/harmony-regexp.js", 277 "src/harmony-regexp.js",
278 "src/harmony-reflect.js", 278 "src/harmony-reflect.js",
279 "src/harmony-spread.js", 279 "src/harmony-spread.js",
280 "src/harmony-object.js", 280 "src/harmony-object.js",
281 "src/harmony-sharedarraybuffer.js" 281 "src/harmony-sharedarraybuffer.js",
282 "src/harmony-simd.js"
282 ] 283 ]
283 284
284 outputs = [ 285 outputs = [
285 "$target_gen_dir/experimental-libraries.cc", 286 "$target_gen_dir/experimental-libraries.cc",
286 ] 287 ]
287 288
288 args = [ 289 args = [
289 rebase_path("$target_gen_dir/experimental-libraries.cc", 290 rebase_path("$target_gen_dir/experimental-libraries.cc",
290 root_build_dir), 291 root_build_dir),
291 "EXPERIMENTAL", 292 "EXPERIMENTAL",
(...skipping 738 matching lines...) Expand 10 before | Expand all | Expand 10 after
1030 "src/runtime/runtime-json.cc", 1031 "src/runtime/runtime-json.cc",
1031 "src/runtime/runtime-literals.cc", 1032 "src/runtime/runtime-literals.cc",
1032 "src/runtime/runtime-liveedit.cc", 1033 "src/runtime/runtime-liveedit.cc",
1033 "src/runtime/runtime-maths.cc", 1034 "src/runtime/runtime-maths.cc",
1034 "src/runtime/runtime-numbers.cc", 1035 "src/runtime/runtime-numbers.cc",
1035 "src/runtime/runtime-object.cc", 1036 "src/runtime/runtime-object.cc",
1036 "src/runtime/runtime-observe.cc", 1037 "src/runtime/runtime-observe.cc",
1037 "src/runtime/runtime-proxy.cc", 1038 "src/runtime/runtime-proxy.cc",
1038 "src/runtime/runtime-regexp.cc", 1039 "src/runtime/runtime-regexp.cc",
1039 "src/runtime/runtime-scopes.cc", 1040 "src/runtime/runtime-scopes.cc",
1041 "src/runtime/runtime-simd.cc",
1040 "src/runtime/runtime-strings.cc", 1042 "src/runtime/runtime-strings.cc",
1041 "src/runtime/runtime-symbol.cc", 1043 "src/runtime/runtime-symbol.cc",
1042 "src/runtime/runtime-test.cc", 1044 "src/runtime/runtime-test.cc",
1043 "src/runtime/runtime-typedarray.cc", 1045 "src/runtime/runtime-typedarray.cc",
1044 "src/runtime/runtime-uri.cc", 1046 "src/runtime/runtime-uri.cc",
1045 "src/runtime/runtime-utils.h", 1047 "src/runtime/runtime-utils.h",
1046 "src/runtime/runtime.cc", 1048 "src/runtime/runtime.cc",
1047 "src/runtime/runtime.h", 1049 "src/runtime/runtime.h",
1048 "src/safepoint-table.cc", 1050 "src/safepoint-table.cc",
1049 "src/safepoint-table.h", 1051 "src/safepoint-table.h",
(...skipping 656 matching lines...) Expand 10 before | Expand all | Expand 10 after
1706 "src/d8-debug.cc", 1708 "src/d8-debug.cc",
1707 "src/d8-debug.h", 1709 "src/d8-debug.h",
1708 "$target_gen_dir/d8-js.cc", 1710 "$target_gen_dir/d8-js.cc",
1709 ] 1711 ]
1710 } 1712 }
1711 if (v8_enable_i18n_support) { 1713 if (v8_enable_i18n_support) {
1712 deps += [ "//third_party/icu" ] 1714 deps += [ "//third_party/icu" ]
1713 } 1715 }
1714 } 1716 }
1715 } 1717 }
OLDNEW
« no previous file with comments | « no previous file | include/v8.h » ('j') | include/v8.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698