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

Side by Side Diff: BUILD.gn

Issue 2051043002: Implement Wasm GrowMemory opcode as a wasm runtime call (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Review changes Created 4 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 | src/compiler/wasm-compiler.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/dcheck_always_on.gni") 7 import("//build/config/dcheck_always_on.gni")
8 import("//build/config/mips.gni") 8 import("//build/config/mips.gni")
9 import("//build/config/sanitizers/sanitizers.gni") 9 import("//build/config/sanitizers/sanitizers.gni")
10 10
(...skipping 1390 matching lines...) Expand 10 before | Expand all | Expand 10 after
1401 "src/runtime/runtime-operators.cc", 1401 "src/runtime/runtime-operators.cc",
1402 "src/runtime/runtime-proxy.cc", 1402 "src/runtime/runtime-proxy.cc",
1403 "src/runtime/runtime-regexp.cc", 1403 "src/runtime/runtime-regexp.cc",
1404 "src/runtime/runtime-scopes.cc", 1404 "src/runtime/runtime-scopes.cc",
1405 "src/runtime/runtime-simd.cc", 1405 "src/runtime/runtime-simd.cc",
1406 "src/runtime/runtime-strings.cc", 1406 "src/runtime/runtime-strings.cc",
1407 "src/runtime/runtime-symbol.cc", 1407 "src/runtime/runtime-symbol.cc",
1408 "src/runtime/runtime-test.cc", 1408 "src/runtime/runtime-test.cc",
1409 "src/runtime/runtime-typedarray.cc", 1409 "src/runtime/runtime-typedarray.cc",
1410 "src/runtime/runtime-utils.h", 1410 "src/runtime/runtime-utils.h",
1411 "src/runtime/runtime-wasm.cc",
1411 "src/runtime/runtime.cc", 1412 "src/runtime/runtime.cc",
1412 "src/runtime/runtime.h", 1413 "src/runtime/runtime.h",
1413 "src/safepoint-table.cc", 1414 "src/safepoint-table.cc",
1414 "src/safepoint-table.h", 1415 "src/safepoint-table.h",
1415 "src/signature.h", 1416 "src/signature.h",
1416 "src/simulator.h", 1417 "src/simulator.h",
1417 "src/small-pointer-list.h", 1418 "src/small-pointer-list.h",
1418 "src/snapshot/code-serializer.cc", 1419 "src/snapshot/code-serializer.cc",
1419 "src/snapshot/code-serializer.h", 1420 "src/snapshot/code-serializer.h",
1420 "src/snapshot/deserializer.cc", 1421 "src/snapshot/deserializer.cc",
(...skipping 925 matching lines...) Expand 10 before | Expand all | Expand 10 after
2346 2347
2347 deps = [ 2348 deps = [
2348 ":fuzzer_support", 2349 ":fuzzer_support",
2349 ] 2350 ]
2350 2351
2351 configs = [ ":internal_config" ] 2352 configs = [ ":internal_config" ]
2352 } 2353 }
2353 2354
2354 v8_fuzzer("wasm_asmjs_fuzzer") { 2355 v8_fuzzer("wasm_asmjs_fuzzer") {
2355 } 2356 }
OLDNEW
« no previous file with comments | « no previous file | src/compiler/wasm-compiler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698