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 1214 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1225 "src/interface-descriptors.cc", | 1225 "src/interface-descriptors.cc", |
1226 "src/interface-descriptors.h", | 1226 "src/interface-descriptors.h", |
1227 "src/interpreter/bytecode-array-builder.cc", | 1227 "src/interpreter/bytecode-array-builder.cc", |
1228 "src/interpreter/bytecode-array-builder.h", | 1228 "src/interpreter/bytecode-array-builder.h", |
1229 "src/interpreter/bytecode-array-iterator.cc", | 1229 "src/interpreter/bytecode-array-iterator.cc", |
1230 "src/interpreter/bytecode-array-iterator.h", | 1230 "src/interpreter/bytecode-array-iterator.h", |
1231 "src/interpreter/bytecode-array-writer.cc", | 1231 "src/interpreter/bytecode-array-writer.cc", |
1232 "src/interpreter/bytecode-array-writer.h", | 1232 "src/interpreter/bytecode-array-writer.h", |
1233 "src/interpreter/bytecode-generator.cc", | 1233 "src/interpreter/bytecode-generator.cc", |
1234 "src/interpreter/bytecode-generator.h", | 1234 "src/interpreter/bytecode-generator.h", |
| 1235 "src/interpreter/bytecode-label.h", |
1235 "src/interpreter/bytecode-peephole-optimizer.cc", | 1236 "src/interpreter/bytecode-peephole-optimizer.cc", |
1236 "src/interpreter/bytecode-peephole-optimizer.h", | 1237 "src/interpreter/bytecode-peephole-optimizer.h", |
1237 "src/interpreter/bytecode-pipeline.cc", | 1238 "src/interpreter/bytecode-pipeline.cc", |
1238 "src/interpreter/bytecode-pipeline.h", | 1239 "src/interpreter/bytecode-pipeline.h", |
1239 "src/interpreter/bytecode-register-allocator.cc", | 1240 "src/interpreter/bytecode-register-allocator.cc", |
1240 "src/interpreter/bytecode-register-allocator.h", | 1241 "src/interpreter/bytecode-register-allocator.h", |
1241 "src/interpreter/bytecode-register-optimizer.cc", | 1242 "src/interpreter/bytecode-register-optimizer.cc", |
1242 "src/interpreter/bytecode-register-optimizer.h", | 1243 "src/interpreter/bytecode-register-optimizer.h", |
1243 "src/interpreter/bytecode-traits.h", | 1244 "src/interpreter/bytecode-traits.h", |
1244 "src/interpreter/bytecodes.cc", | 1245 "src/interpreter/bytecodes.cc", |
(...skipping 956 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2201 sources = [ | 2202 sources = [ |
2202 "test/fuzzer/wasm-asmjs.cc", | 2203 "test/fuzzer/wasm-asmjs.cc", |
2203 ] | 2204 ] |
2204 | 2205 |
2205 deps = [ | 2206 deps = [ |
2206 ":fuzzer_support", | 2207 ":fuzzer_support", |
2207 ] | 2208 ] |
2208 | 2209 |
2209 configs = [ ":internal_config" ] | 2210 configs = [ ":internal_config" ] |
2210 } | 2211 } |
OLD | NEW |