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 1039 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1050 "src/compiler/linkage.h", | 1050 "src/compiler/linkage.h", |
1051 "src/compiler/live-range-separator.cc", | 1051 "src/compiler/live-range-separator.cc", |
1052 "src/compiler/live-range-separator.h", | 1052 "src/compiler/live-range-separator.h", |
1053 "src/compiler/liveness-analyzer.cc", | 1053 "src/compiler/liveness-analyzer.cc", |
1054 "src/compiler/liveness-analyzer.h", | 1054 "src/compiler/liveness-analyzer.h", |
1055 "src/compiler/load-elimination.cc", | 1055 "src/compiler/load-elimination.cc", |
1056 "src/compiler/load-elimination.h", | 1056 "src/compiler/load-elimination.h", |
1057 "src/compiler/loop-analysis.cc", | 1057 "src/compiler/loop-analysis.cc", |
1058 "src/compiler/loop-analysis.h", | 1058 "src/compiler/loop-analysis.h", |
1059 "src/compiler/loop-peeling.cc", | 1059 "src/compiler/loop-peeling.cc", |
| 1060 "src/compiler/loop-peeling.h", |
| 1061 "src/compiler/loop-variable-optimizer.cc", |
| 1062 "src/compiler/loop-variable-optimizer.h", |
1060 "src/compiler/machine-operator-reducer.cc", | 1063 "src/compiler/machine-operator-reducer.cc", |
1061 "src/compiler/machine-operator-reducer.h", | 1064 "src/compiler/machine-operator-reducer.h", |
1062 "src/compiler/machine-operator.cc", | 1065 "src/compiler/machine-operator.cc", |
1063 "src/compiler/machine-operator.h", | 1066 "src/compiler/machine-operator.h", |
1064 "src/compiler/memory-optimizer.cc", | 1067 "src/compiler/memory-optimizer.cc", |
1065 "src/compiler/memory-optimizer.h", | 1068 "src/compiler/memory-optimizer.h", |
1066 "src/compiler/move-optimizer.cc", | 1069 "src/compiler/move-optimizer.cc", |
1067 "src/compiler/move-optimizer.h", | 1070 "src/compiler/move-optimizer.h", |
1068 "src/compiler/node-aux-data.h", | 1071 "src/compiler/node-aux-data.h", |
1069 "src/compiler/node-cache.cc", | 1072 "src/compiler/node-cache.cc", |
(...skipping 1449 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2519 | 2522 |
2520 deps = [ | 2523 deps = [ |
2521 ":fuzzer_support", | 2524 ":fuzzer_support", |
2522 ] | 2525 ] |
2523 | 2526 |
2524 configs = [ ":internal_config" ] | 2527 configs = [ ":internal_config" ] |
2525 } | 2528 } |
2526 | 2529 |
2527 v8_fuzzer("wasm_asmjs_fuzzer") { | 2530 v8_fuzzer("wasm_asmjs_fuzzer") { |
2528 } | 2531 } |
OLD | NEW |