| 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 1120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1131 "src/compiler/js-call-reducer.cc", | 1131 "src/compiler/js-call-reducer.cc", |
| 1132 "src/compiler/js-call-reducer.h", | 1132 "src/compiler/js-call-reducer.h", |
| 1133 "src/compiler/js-context-specialization.cc", | 1133 "src/compiler/js-context-specialization.cc", |
| 1134 "src/compiler/js-context-specialization.h", | 1134 "src/compiler/js-context-specialization.h", |
| 1135 "src/compiler/js-create-lowering.cc", | 1135 "src/compiler/js-create-lowering.cc", |
| 1136 "src/compiler/js-create-lowering.h", | 1136 "src/compiler/js-create-lowering.h", |
| 1137 "src/compiler/js-frame-specialization.cc", | 1137 "src/compiler/js-frame-specialization.cc", |
| 1138 "src/compiler/js-frame-specialization.h", | 1138 "src/compiler/js-frame-specialization.h", |
| 1139 "src/compiler/js-generic-lowering.cc", | 1139 "src/compiler/js-generic-lowering.cc", |
| 1140 "src/compiler/js-generic-lowering.h", | 1140 "src/compiler/js-generic-lowering.h", |
| 1141 "src/compiler/js-global-object-specialization.cc", | |
| 1142 "src/compiler/js-global-object-specialization.h", | |
| 1143 "src/compiler/js-graph.cc", | 1141 "src/compiler/js-graph.cc", |
| 1144 "src/compiler/js-graph.h", | 1142 "src/compiler/js-graph.h", |
| 1145 "src/compiler/js-inlining-heuristic.cc", | 1143 "src/compiler/js-inlining-heuristic.cc", |
| 1146 "src/compiler/js-inlining-heuristic.h", | 1144 "src/compiler/js-inlining-heuristic.h", |
| 1147 "src/compiler/js-inlining.cc", | 1145 "src/compiler/js-inlining.cc", |
| 1148 "src/compiler/js-inlining.h", | 1146 "src/compiler/js-inlining.h", |
| 1149 "src/compiler/js-intrinsic-lowering.cc", | 1147 "src/compiler/js-intrinsic-lowering.cc", |
| 1150 "src/compiler/js-intrinsic-lowering.h", | 1148 "src/compiler/js-intrinsic-lowering.h", |
| 1151 "src/compiler/js-native-context-specialization.cc", | 1149 "src/compiler/js-native-context-specialization.cc", |
| 1152 "src/compiler/js-native-context-specialization.h", | 1150 "src/compiler/js-native-context-specialization.h", |
| (...skipping 1917 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3070 ] | 3068 ] |
| 3071 | 3069 |
| 3072 configs = [ | 3070 configs = [ |
| 3073 ":external_config", | 3071 ":external_config", |
| 3074 ":internal_config_base", | 3072 ":internal_config_base", |
| 3075 ] | 3073 ] |
| 3076 } | 3074 } |
| 3077 | 3075 |
| 3078 v8_fuzzer("wasm_data_section_fuzzer") { | 3076 v8_fuzzer("wasm_data_section_fuzzer") { |
| 3079 } | 3077 } |
| OLD | NEW |