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 1076 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1087 "src/compiler/liveness-analyzer.cc", | 1087 "src/compiler/liveness-analyzer.cc", |
1088 "src/compiler/liveness-analyzer.h", | 1088 "src/compiler/liveness-analyzer.h", |
1089 "src/compiler/load-elimination.cc", | 1089 "src/compiler/load-elimination.cc", |
1090 "src/compiler/load-elimination.h", | 1090 "src/compiler/load-elimination.h", |
1091 "src/compiler/loop-analysis.cc", | 1091 "src/compiler/loop-analysis.cc", |
1092 "src/compiler/loop-analysis.h", | 1092 "src/compiler/loop-analysis.h", |
1093 "src/compiler/loop-peeling.cc", | 1093 "src/compiler/loop-peeling.cc", |
1094 "src/compiler/loop-peeling.h", | 1094 "src/compiler/loop-peeling.h", |
1095 "src/compiler/loop-variable-optimizer.cc", | 1095 "src/compiler/loop-variable-optimizer.cc", |
1096 "src/compiler/loop-variable-optimizer.h", | 1096 "src/compiler/loop-variable-optimizer.h", |
| 1097 "src/compiler/machine-graph-verifier.cc", |
| 1098 "src/compiler/machine-graph-verifier.h", |
1097 "src/compiler/machine-operator-reducer.cc", | 1099 "src/compiler/machine-operator-reducer.cc", |
1098 "src/compiler/machine-operator-reducer.h", | 1100 "src/compiler/machine-operator-reducer.h", |
1099 "src/compiler/machine-operator.cc", | 1101 "src/compiler/machine-operator.cc", |
1100 "src/compiler/machine-operator.h", | 1102 "src/compiler/machine-operator.h", |
1101 "src/compiler/memory-optimizer.cc", | 1103 "src/compiler/memory-optimizer.cc", |
1102 "src/compiler/memory-optimizer.h", | 1104 "src/compiler/memory-optimizer.h", |
1103 "src/compiler/move-optimizer.cc", | 1105 "src/compiler/move-optimizer.cc", |
1104 "src/compiler/move-optimizer.h", | 1106 "src/compiler/move-optimizer.h", |
1105 "src/compiler/node-aux-data.h", | 1107 "src/compiler/node-aux-data.h", |
1106 "src/compiler/node-cache.cc", | 1108 "src/compiler/node-cache.cc", |
(...skipping 1827 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2934 ] | 2936 ] |
2935 | 2937 |
2936 configs = [ | 2938 configs = [ |
2937 ":external_config", | 2939 ":external_config", |
2938 ":internal_config_base", | 2940 ":internal_config_base", |
2939 ] | 2941 ] |
2940 } | 2942 } |
2941 | 2943 |
2942 v8_fuzzer("wasm_data_section_fuzzer") { | 2944 v8_fuzzer("wasm_data_section_fuzzer") { |
2943 } | 2945 } |
OLD | NEW |