OLD | NEW |
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 1484 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1495 "src/wasm/encoder.h", | 1495 "src/wasm/encoder.h", |
1496 "src/wasm/leb-helper.h", | 1496 "src/wasm/leb-helper.h", |
1497 "src/wasm/module-decoder.cc", | 1497 "src/wasm/module-decoder.cc", |
1498 "src/wasm/module-decoder.h", | 1498 "src/wasm/module-decoder.h", |
1499 "src/wasm/switch-logic.cc", | 1499 "src/wasm/switch-logic.cc", |
1500 "src/wasm/switch-logic.h", | 1500 "src/wasm/switch-logic.h", |
1501 "src/wasm/wasm-external-refs.cc", | 1501 "src/wasm/wasm-external-refs.cc", |
1502 "src/wasm/wasm-external-refs.h", | 1502 "src/wasm/wasm-external-refs.h", |
1503 "src/wasm/wasm-function-name-table.cc", | 1503 "src/wasm/wasm-function-name-table.cc", |
1504 "src/wasm/wasm-function-name-table.h", | 1504 "src/wasm/wasm-function-name-table.h", |
| 1505 "src/wasm/wasm-interpreter.cc", |
| 1506 "src/wasm/wasm-interpreter.h", |
1505 "src/wasm/wasm-js.cc", | 1507 "src/wasm/wasm-js.cc", |
1506 "src/wasm/wasm-js.h", | 1508 "src/wasm/wasm-js.h", |
1507 "src/wasm/wasm-macro-gen.h", | 1509 "src/wasm/wasm-macro-gen.h", |
1508 "src/wasm/wasm-module.cc", | 1510 "src/wasm/wasm-module.cc", |
1509 "src/wasm/wasm-module.h", | 1511 "src/wasm/wasm-module.h", |
1510 "src/wasm/wasm-opcodes.cc", | 1512 "src/wasm/wasm-opcodes.cc", |
1511 "src/wasm/wasm-opcodes.h", | 1513 "src/wasm/wasm-opcodes.h", |
1512 "src/wasm/wasm-result.cc", | 1514 "src/wasm/wasm-result.cc", |
1513 "src/wasm/wasm-result.h", | 1515 "src/wasm/wasm-result.h", |
1514 "src/zone-allocator.h", | 1516 "src/zone-allocator.h", |
(...skipping 674 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2189 sources = [ | 2191 sources = [ |
2190 "test/fuzzer/wasm-asmjs.cc", | 2192 "test/fuzzer/wasm-asmjs.cc", |
2191 ] | 2193 ] |
2192 | 2194 |
2193 deps = [ | 2195 deps = [ |
2194 ":fuzzer_support", | 2196 ":fuzzer_support", |
2195 ] | 2197 ] |
2196 | 2198 |
2197 configs = [ ":internal_config" ] | 2199 configs = [ ":internal_config" ] |
2198 } | 2200 } |
OLD | NEW |