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 1152 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1163 "src/compiler/register-allocator.cc", | 1163 "src/compiler/register-allocator.cc", |
1164 "src/compiler/register-allocator.h", | 1164 "src/compiler/register-allocator.h", |
1165 "src/compiler/representation-change.cc", | 1165 "src/compiler/representation-change.cc", |
1166 "src/compiler/representation-change.h", | 1166 "src/compiler/representation-change.h", |
1167 "src/compiler/schedule.cc", | 1167 "src/compiler/schedule.cc", |
1168 "src/compiler/schedule.h", | 1168 "src/compiler/schedule.h", |
1169 "src/compiler/scheduler.cc", | 1169 "src/compiler/scheduler.cc", |
1170 "src/compiler/scheduler.h", | 1170 "src/compiler/scheduler.h", |
1171 "src/compiler/select-lowering.cc", | 1171 "src/compiler/select-lowering.cc", |
1172 "src/compiler/select-lowering.h", | 1172 "src/compiler/select-lowering.h", |
| 1173 "src/compiler/simd-scalar-lowering.cc", |
| 1174 "src/compiler/simd-scalar-lowering.h", |
1173 "src/compiler/simplified-lowering.cc", | 1175 "src/compiler/simplified-lowering.cc", |
1174 "src/compiler/simplified-lowering.h", | 1176 "src/compiler/simplified-lowering.h", |
1175 "src/compiler/simplified-operator-reducer.cc", | 1177 "src/compiler/simplified-operator-reducer.cc", |
1176 "src/compiler/simplified-operator-reducer.h", | 1178 "src/compiler/simplified-operator-reducer.h", |
1177 "src/compiler/simplified-operator.cc", | 1179 "src/compiler/simplified-operator.cc", |
1178 "src/compiler/simplified-operator.h", | 1180 "src/compiler/simplified-operator.h", |
1179 "src/compiler/source-position.cc", | 1181 "src/compiler/source-position.cc", |
1180 "src/compiler/source-position.h", | 1182 "src/compiler/source-position.h", |
1181 "src/compiler/state-values-utils.cc", | 1183 "src/compiler/state-values-utils.cc", |
1182 "src/compiler/state-values-utils.h", | 1184 "src/compiler/state-values-utils.h", |
(...skipping 1779 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2962 ] | 2964 ] |
2963 | 2965 |
2964 configs = [ | 2966 configs = [ |
2965 ":external_config", | 2967 ":external_config", |
2966 ":internal_config_base", | 2968 ":internal_config_base", |
2967 ] | 2969 ] |
2968 } | 2970 } |
2969 | 2971 |
2970 v8_fuzzer("wasm_data_section_fuzzer") { | 2972 v8_fuzzer("wasm_data_section_fuzzer") { |
2971 } | 2973 } |
OLD | NEW |