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 1180 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1191 "src/compiler/int64-lowering.cc", | 1191 "src/compiler/int64-lowering.cc", |
1192 "src/compiler/int64-lowering.h", | 1192 "src/compiler/int64-lowering.h", |
1193 "src/compiler/js-builtin-reducer.cc", | 1193 "src/compiler/js-builtin-reducer.cc", |
1194 "src/compiler/js-builtin-reducer.h", | 1194 "src/compiler/js-builtin-reducer.h", |
1195 "src/compiler/js-call-reducer.cc", | 1195 "src/compiler/js-call-reducer.cc", |
1196 "src/compiler/js-call-reducer.h", | 1196 "src/compiler/js-call-reducer.h", |
1197 "src/compiler/js-context-specialization.cc", | 1197 "src/compiler/js-context-specialization.cc", |
1198 "src/compiler/js-context-specialization.h", | 1198 "src/compiler/js-context-specialization.h", |
1199 "src/compiler/js-create-lowering.cc", | 1199 "src/compiler/js-create-lowering.cc", |
1200 "src/compiler/js-create-lowering.h", | 1200 "src/compiler/js-create-lowering.h", |
| 1201 "src/compiler/js-for-in-lowering.cc", |
| 1202 "src/compiler/js-for-in-lowering.h", |
1201 "src/compiler/js-frame-specialization.cc", | 1203 "src/compiler/js-frame-specialization.cc", |
1202 "src/compiler/js-frame-specialization.h", | 1204 "src/compiler/js-frame-specialization.h", |
1203 "src/compiler/js-generic-lowering.cc", | 1205 "src/compiler/js-generic-lowering.cc", |
1204 "src/compiler/js-generic-lowering.h", | 1206 "src/compiler/js-generic-lowering.h", |
1205 "src/compiler/js-graph.cc", | 1207 "src/compiler/js-graph.cc", |
1206 "src/compiler/js-graph.h", | 1208 "src/compiler/js-graph.h", |
1207 "src/compiler/js-inlining-heuristic.cc", | 1209 "src/compiler/js-inlining-heuristic.cc", |
1208 "src/compiler/js-inlining-heuristic.h", | 1210 "src/compiler/js-inlining-heuristic.h", |
1209 "src/compiler/js-inlining.cc", | 1211 "src/compiler/js-inlining.cc", |
1210 "src/compiler/js-inlining.h", | 1212 "src/compiler/js-inlining.h", |
(...skipping 1973 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3184 ] | 3186 ] |
3185 | 3187 |
3186 configs = [ | 3188 configs = [ |
3187 ":external_config", | 3189 ":external_config", |
3188 ":internal_config_base", | 3190 ":internal_config_base", |
3189 ] | 3191 ] |
3190 } | 3192 } |
3191 | 3193 |
3192 v8_fuzzer("wasm_compile_fuzzer") { | 3194 v8_fuzzer("wasm_compile_fuzzer") { |
3193 } | 3195 } |
OLD | NEW |