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

Side by Side Diff: BUILD.gn

Issue 1972153002: [wasm] Implement an interpreter for WASM. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Rebase Created 4 years, 7 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/flag-definitions.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 import("//build/config/sanitizers/sanitizers.gni") 8 import("//build/config/sanitizers/sanitizers.gni")
9 9
10 if (is_android) { 10 if (is_android) {
(...skipping 1474 matching lines...) Expand 10 before | Expand all | Expand 10 after
1485 "src/wasm/encoder.h", 1485 "src/wasm/encoder.h",
1486 "src/wasm/leb-helper.h", 1486 "src/wasm/leb-helper.h",
1487 "src/wasm/module-decoder.cc", 1487 "src/wasm/module-decoder.cc",
1488 "src/wasm/module-decoder.h", 1488 "src/wasm/module-decoder.h",
1489 "src/wasm/switch-logic.cc", 1489 "src/wasm/switch-logic.cc",
1490 "src/wasm/switch-logic.h", 1490 "src/wasm/switch-logic.h",
1491 "src/wasm/wasm-external-refs.cc", 1491 "src/wasm/wasm-external-refs.cc",
1492 "src/wasm/wasm-external-refs.h", 1492 "src/wasm/wasm-external-refs.h",
1493 "src/wasm/wasm-function-name-table.cc", 1493 "src/wasm/wasm-function-name-table.cc",
1494 "src/wasm/wasm-function-name-table.h", 1494 "src/wasm/wasm-function-name-table.h",
1495 "src/wasm/wasm-interpreter.cc",
1496 "src/wasm/wasm-interpreter.h",
1495 "src/wasm/wasm-js.cc", 1497 "src/wasm/wasm-js.cc",
1496 "src/wasm/wasm-js.h", 1498 "src/wasm/wasm-js.h",
1497 "src/wasm/wasm-macro-gen.h", 1499 "src/wasm/wasm-macro-gen.h",
1498 "src/wasm/wasm-module.cc", 1500 "src/wasm/wasm-module.cc",
1499 "src/wasm/wasm-module.h", 1501 "src/wasm/wasm-module.h",
1500 "src/wasm/wasm-opcodes.cc", 1502 "src/wasm/wasm-opcodes.cc",
1501 "src/wasm/wasm-opcodes.h", 1503 "src/wasm/wasm-opcodes.h",
1502 "src/wasm/wasm-result.cc", 1504 "src/wasm/wasm-result.cc",
1503 "src/wasm/wasm-result.h", 1505 "src/wasm/wasm-result.h",
1504 "src/zone-allocator.h", 1506 "src/zone-allocator.h",
(...skipping 674 matching lines...) Expand 10 before | Expand all | Expand 10 after
2179 sources = [ 2181 sources = [
2180 "test/fuzzer/wasm-asmjs.cc", 2182 "test/fuzzer/wasm-asmjs.cc",
2181 ] 2183 ]
2182 2184
2183 deps = [ 2185 deps = [
2184 ":fuzzer_support", 2186 ":fuzzer_support",
2185 ] 2187 ]
2186 2188
2187 configs = [ ":internal_config" ] 2189 configs = [ ":internal_config" ]
2188 } 2190 }
OLDNEW
« no previous file with comments | « no previous file | src/flag-definitions.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698