| 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 1230 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1241 "src/interpreter/bytecode-array-writer.cc", | 1241 "src/interpreter/bytecode-array-writer.cc", |
| 1242 "src/interpreter/bytecode-array-writer.h", | 1242 "src/interpreter/bytecode-array-writer.h", |
| 1243 "src/interpreter/bytecode-generator.cc", | 1243 "src/interpreter/bytecode-generator.cc", |
| 1244 "src/interpreter/bytecode-generator.h", | 1244 "src/interpreter/bytecode-generator.h", |
| 1245 "src/interpreter/bytecode-peephole-optimizer.cc", | 1245 "src/interpreter/bytecode-peephole-optimizer.cc", |
| 1246 "src/interpreter/bytecode-peephole-optimizer.h", | 1246 "src/interpreter/bytecode-peephole-optimizer.h", |
| 1247 "src/interpreter/bytecode-pipeline.cc", | 1247 "src/interpreter/bytecode-pipeline.cc", |
| 1248 "src/interpreter/bytecode-pipeline.h", | 1248 "src/interpreter/bytecode-pipeline.h", |
| 1249 "src/interpreter/bytecode-register-allocator.cc", | 1249 "src/interpreter/bytecode-register-allocator.cc", |
| 1250 "src/interpreter/bytecode-register-allocator.h", | 1250 "src/interpreter/bytecode-register-allocator.h", |
| 1251 "src/interpreter/bytecode-register-optimizer.cc", |
| 1252 "src/interpreter/bytecode-register-optimizer.h", |
| 1251 "src/interpreter/bytecode-traits.h", | 1253 "src/interpreter/bytecode-traits.h", |
| 1252 "src/interpreter/bytecodes.cc", | 1254 "src/interpreter/bytecodes.cc", |
| 1253 "src/interpreter/bytecodes.h", | 1255 "src/interpreter/bytecodes.h", |
| 1254 "src/interpreter/constant-array-builder.cc", | 1256 "src/interpreter/constant-array-builder.cc", |
| 1255 "src/interpreter/constant-array-builder.h", | 1257 "src/interpreter/constant-array-builder.h", |
| 1256 "src/interpreter/control-flow-builders.cc", | 1258 "src/interpreter/control-flow-builders.cc", |
| 1257 "src/interpreter/control-flow-builders.h", | 1259 "src/interpreter/control-flow-builders.h", |
| 1258 "src/interpreter/handler-table-builder.cc", | 1260 "src/interpreter/handler-table-builder.cc", |
| 1259 "src/interpreter/handler-table-builder.h", | 1261 "src/interpreter/handler-table-builder.h", |
| 1260 "src/interpreter/interpreter-assembler.cc", | 1262 "src/interpreter/interpreter-assembler.cc", |
| (...skipping 935 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2196 sources = [ | 2198 sources = [ |
| 2197 "test/fuzzer/wasm-asmjs.cc", | 2199 "test/fuzzer/wasm-asmjs.cc", |
| 2198 ] | 2200 ] |
| 2199 | 2201 |
| 2200 deps = [ | 2202 deps = [ |
| 2201 ":fuzzer_support", | 2203 ":fuzzer_support", |
| 2202 ] | 2204 ] |
| 2203 | 2205 |
| 2204 configs = [ ":internal_config" ] | 2206 configs = [ ":internal_config" ] |
| 2205 } | 2207 } |
| OLD | NEW |