| 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/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 956 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 967 "src/compiler/operator.cc", | 967 "src/compiler/operator.cc", |
| 968 "src/compiler/operator.h", | 968 "src/compiler/operator.h", |
| 969 "src/compiler/osr.cc", | 969 "src/compiler/osr.cc", |
| 970 "src/compiler/osr.h", | 970 "src/compiler/osr.h", |
| 971 "src/compiler/pipeline-statistics.cc", | 971 "src/compiler/pipeline-statistics.cc", |
| 972 "src/compiler/pipeline-statistics.h", | 972 "src/compiler/pipeline-statistics.h", |
| 973 "src/compiler/pipeline.cc", | 973 "src/compiler/pipeline.cc", |
| 974 "src/compiler/pipeline.h", | 974 "src/compiler/pipeline.h", |
| 975 "src/compiler/raw-machine-assembler.cc", | 975 "src/compiler/raw-machine-assembler.cc", |
| 976 "src/compiler/raw-machine-assembler.h", | 976 "src/compiler/raw-machine-assembler.h", |
| 977 "src/compiler/redundancy-elimination.cc", |
| 978 "src/compiler/redundancy-elimination.h", |
| 977 "src/compiler/register-allocator-verifier.cc", | 979 "src/compiler/register-allocator-verifier.cc", |
| 978 "src/compiler/register-allocator-verifier.h", | 980 "src/compiler/register-allocator-verifier.h", |
| 979 "src/compiler/register-allocator.cc", | 981 "src/compiler/register-allocator.cc", |
| 980 "src/compiler/register-allocator.h", | 982 "src/compiler/register-allocator.h", |
| 981 "src/compiler/representation-change.cc", | 983 "src/compiler/representation-change.cc", |
| 982 "src/compiler/representation-change.h", | 984 "src/compiler/representation-change.h", |
| 983 "src/compiler/schedule.cc", | 985 "src/compiler/schedule.cc", |
| 984 "src/compiler/schedule.h", | 986 "src/compiler/schedule.h", |
| 985 "src/compiler/scheduler.cc", | 987 "src/compiler/scheduler.cc", |
| 986 "src/compiler/scheduler.h", | 988 "src/compiler/scheduler.h", |
| (...skipping 1325 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2312 | 2314 |
| 2313 deps = [ | 2315 deps = [ |
| 2314 ":fuzzer_support", | 2316 ":fuzzer_support", |
| 2315 ] | 2317 ] |
| 2316 | 2318 |
| 2317 configs = [ ":internal_config" ] | 2319 configs = [ ":internal_config" ] |
| 2318 } | 2320 } |
| 2319 | 2321 |
| 2320 v8_fuzzer("wasm_asmjs_fuzzer") { | 2322 v8_fuzzer("wasm_asmjs_fuzzer") { |
| 2321 } | 2323 } |
| OLD | NEW |