| 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 967 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 978 "src/compiler/register-allocator.cc", | 978 "src/compiler/register-allocator.cc", |
| 979 "src/compiler/register-allocator.h", | 979 "src/compiler/register-allocator.h", |
| 980 "src/compiler/representation-change.cc", | 980 "src/compiler/representation-change.cc", |
| 981 "src/compiler/representation-change.h", | 981 "src/compiler/representation-change.h", |
| 982 "src/compiler/schedule.cc", | 982 "src/compiler/schedule.cc", |
| 983 "src/compiler/schedule.h", | 983 "src/compiler/schedule.h", |
| 984 "src/compiler/scheduler.cc", | 984 "src/compiler/scheduler.cc", |
| 985 "src/compiler/scheduler.h", | 985 "src/compiler/scheduler.h", |
| 986 "src/compiler/select-lowering.cc", | 986 "src/compiler/select-lowering.cc", |
| 987 "src/compiler/select-lowering.h", | 987 "src/compiler/select-lowering.h", |
| 988 "src/compiler/simd-lowering.cc", |
| 989 "src/compiler/simd-lowering.h", |
| 988 "src/compiler/simplified-lowering.cc", | 990 "src/compiler/simplified-lowering.cc", |
| 989 "src/compiler/simplified-lowering.h", | 991 "src/compiler/simplified-lowering.h", |
| 990 "src/compiler/simplified-operator-reducer.cc", | 992 "src/compiler/simplified-operator-reducer.cc", |
| 991 "src/compiler/simplified-operator-reducer.h", | 993 "src/compiler/simplified-operator-reducer.h", |
| 992 "src/compiler/simplified-operator.cc", | 994 "src/compiler/simplified-operator.cc", |
| 993 "src/compiler/simplified-operator.h", | 995 "src/compiler/simplified-operator.h", |
| 994 "src/compiler/source-position.cc", | 996 "src/compiler/source-position.cc", |
| 995 "src/compiler/source-position.h", | 997 "src/compiler/source-position.h", |
| 996 "src/compiler/state-values-utils.cc", | 998 "src/compiler/state-values-utils.cc", |
| 997 "src/compiler/state-values-utils.h", | 999 "src/compiler/state-values-utils.h", |
| (...skipping 1349 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2347 | 2349 |
| 2348 deps = [ | 2350 deps = [ |
| 2349 ":fuzzer_support", | 2351 ":fuzzer_support", |
| 2350 ] | 2352 ] |
| 2351 | 2353 |
| 2352 configs = [ ":internal_config" ] | 2354 configs = [ ":internal_config" ] |
| 2353 } | 2355 } |
| 2354 | 2356 |
| 2355 v8_fuzzer("wasm_asmjs_fuzzer") { | 2357 v8_fuzzer("wasm_asmjs_fuzzer") { |
| 2356 } | 2358 } |
| OLD | NEW |