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 1101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1112 "src/compiler/register-allocator.cc", | 1112 "src/compiler/register-allocator.cc", |
1113 "src/compiler/register-allocator.h", | 1113 "src/compiler/register-allocator.h", |
1114 "src/compiler/representation-change.cc", | 1114 "src/compiler/representation-change.cc", |
1115 "src/compiler/representation-change.h", | 1115 "src/compiler/representation-change.h", |
1116 "src/compiler/schedule.cc", | 1116 "src/compiler/schedule.cc", |
1117 "src/compiler/schedule.h", | 1117 "src/compiler/schedule.h", |
1118 "src/compiler/scheduler.cc", | 1118 "src/compiler/scheduler.cc", |
1119 "src/compiler/scheduler.h", | 1119 "src/compiler/scheduler.h", |
1120 "src/compiler/select-lowering.cc", | 1120 "src/compiler/select-lowering.cc", |
1121 "src/compiler/select-lowering.h", | 1121 "src/compiler/select-lowering.h", |
1122 "src/compiler/simd-lowering.cc", | |
1123 "src/compiler/simd-lowering.h", | |
1124 "src/compiler/simplified-lowering.cc", | 1122 "src/compiler/simplified-lowering.cc", |
1125 "src/compiler/simplified-lowering.h", | 1123 "src/compiler/simplified-lowering.h", |
1126 "src/compiler/simplified-operator-reducer.cc", | 1124 "src/compiler/simplified-operator-reducer.cc", |
1127 "src/compiler/simplified-operator-reducer.h", | 1125 "src/compiler/simplified-operator-reducer.h", |
1128 "src/compiler/simplified-operator.cc", | 1126 "src/compiler/simplified-operator.cc", |
1129 "src/compiler/simplified-operator.h", | 1127 "src/compiler/simplified-operator.h", |
1130 "src/compiler/source-position.cc", | 1128 "src/compiler/source-position.cc", |
1131 "src/compiler/source-position.h", | 1129 "src/compiler/source-position.h", |
1132 "src/compiler/state-values-utils.cc", | 1130 "src/compiler/state-values-utils.cc", |
1133 "src/compiler/state-values-utils.h", | 1131 "src/compiler/state-values-utils.h", |
(...skipping 1407 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2541 | 2539 |
2542 deps = [ | 2540 deps = [ |
2543 ":fuzzer_support", | 2541 ":fuzzer_support", |
2544 ] | 2542 ] |
2545 | 2543 |
2546 configs = [ ":internal_config" ] | 2544 configs = [ ":internal_config" ] |
2547 } | 2545 } |
2548 | 2546 |
2549 v8_fuzzer("wasm_asmjs_fuzzer") { | 2547 v8_fuzzer("wasm_asmjs_fuzzer") { |
2550 } | 2548 } |
OLD | NEW |