| 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 1011 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1022 "src/compiler/register-allocator.cc", | 1022 "src/compiler/register-allocator.cc", |
| 1023 "src/compiler/register-allocator.h", | 1023 "src/compiler/register-allocator.h", |
| 1024 "src/compiler/representation-change.cc", | 1024 "src/compiler/representation-change.cc", |
| 1025 "src/compiler/representation-change.h", | 1025 "src/compiler/representation-change.h", |
| 1026 "src/compiler/schedule.cc", | 1026 "src/compiler/schedule.cc", |
| 1027 "src/compiler/schedule.h", | 1027 "src/compiler/schedule.h", |
| 1028 "src/compiler/scheduler.cc", | 1028 "src/compiler/scheduler.cc", |
| 1029 "src/compiler/scheduler.h", | 1029 "src/compiler/scheduler.h", |
| 1030 "src/compiler/select-lowering.cc", | 1030 "src/compiler/select-lowering.cc", |
| 1031 "src/compiler/select-lowering.h", | 1031 "src/compiler/select-lowering.h", |
| 1032 "src/compiler/simd-lowering.cc", | |
| 1033 "src/compiler/simd-lowering.h", | |
| 1034 "src/compiler/simplified-lowering.cc", | 1032 "src/compiler/simplified-lowering.cc", |
| 1035 "src/compiler/simplified-lowering.h", | 1033 "src/compiler/simplified-lowering.h", |
| 1036 "src/compiler/simplified-operator-reducer.cc", | 1034 "src/compiler/simplified-operator-reducer.cc", |
| 1037 "src/compiler/simplified-operator-reducer.h", | 1035 "src/compiler/simplified-operator-reducer.h", |
| 1038 "src/compiler/simplified-operator.cc", | 1036 "src/compiler/simplified-operator.cc", |
| 1039 "src/compiler/simplified-operator.h", | 1037 "src/compiler/simplified-operator.h", |
| 1040 "src/compiler/source-position.cc", | 1038 "src/compiler/source-position.cc", |
| 1041 "src/compiler/source-position.h", | 1039 "src/compiler/source-position.h", |
| 1042 "src/compiler/state-values-utils.cc", | 1040 "src/compiler/state-values-utils.cc", |
| 1043 "src/compiler/state-values-utils.h", | 1041 "src/compiler/state-values-utils.h", |
| (...skipping 1357 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2401 | 2399 |
| 2402 deps = [ | 2400 deps = [ |
| 2403 ":fuzzer_support", | 2401 ":fuzzer_support", |
| 2404 ] | 2402 ] |
| 2405 | 2403 |
| 2406 configs = [ ":internal_config" ] | 2404 configs = [ ":internal_config" ] |
| 2407 } | 2405 } |
| 2408 | 2406 |
| 2409 v8_fuzzer("wasm_asmjs_fuzzer") { | 2407 v8_fuzzer("wasm_asmjs_fuzzer") { |
| 2410 } | 2408 } |
| OLD | NEW |