| 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 1099 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1110 "src/compiler/register-allocator.cc", | 1110 "src/compiler/register-allocator.cc", |
| 1111 "src/compiler/register-allocator.h", | 1111 "src/compiler/register-allocator.h", |
| 1112 "src/compiler/representation-change.cc", | 1112 "src/compiler/representation-change.cc", |
| 1113 "src/compiler/representation-change.h", | 1113 "src/compiler/representation-change.h", |
| 1114 "src/compiler/schedule.cc", | 1114 "src/compiler/schedule.cc", |
| 1115 "src/compiler/schedule.h", | 1115 "src/compiler/schedule.h", |
| 1116 "src/compiler/scheduler.cc", | 1116 "src/compiler/scheduler.cc", |
| 1117 "src/compiler/scheduler.h", | 1117 "src/compiler/scheduler.h", |
| 1118 "src/compiler/select-lowering.cc", | 1118 "src/compiler/select-lowering.cc", |
| 1119 "src/compiler/select-lowering.h", | 1119 "src/compiler/select-lowering.h", |
| 1120 "src/compiler/simd-scalar-lowering.cc", |
| 1121 "src/compiler/simd-scalar-lowering.h", |
| 1120 "src/compiler/simplified-lowering.cc", | 1122 "src/compiler/simplified-lowering.cc", |
| 1121 "src/compiler/simplified-lowering.h", | 1123 "src/compiler/simplified-lowering.h", |
| 1122 "src/compiler/simplified-operator-reducer.cc", | 1124 "src/compiler/simplified-operator-reducer.cc", |
| 1123 "src/compiler/simplified-operator-reducer.h", | 1125 "src/compiler/simplified-operator-reducer.h", |
| 1124 "src/compiler/simplified-operator.cc", | 1126 "src/compiler/simplified-operator.cc", |
| 1125 "src/compiler/simplified-operator.h", | 1127 "src/compiler/simplified-operator.h", |
| 1126 "src/compiler/source-position.cc", | 1128 "src/compiler/source-position.cc", |
| 1127 "src/compiler/source-position.h", | 1129 "src/compiler/source-position.h", |
| 1128 "src/compiler/state-values-utils.cc", | 1130 "src/compiler/state-values-utils.cc", |
| 1129 "src/compiler/state-values-utils.h", | 1131 "src/compiler/state-values-utils.h", |
| (...skipping 1447 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2577 | 2579 |
| 2578 deps = [ | 2580 deps = [ |
| 2579 ":fuzzer_support", | 2581 ":fuzzer_support", |
| 2580 ] | 2582 ] |
| 2581 | 2583 |
| 2582 configs = [ ":internal_config" ] | 2584 configs = [ ":internal_config" ] |
| 2583 } | 2585 } |
| 2584 | 2586 |
| 2585 v8_fuzzer("wasm_asmjs_fuzzer") { | 2587 v8_fuzzer("wasm_asmjs_fuzzer") { |
| 2586 } | 2588 } |
| OLD | NEW |