| 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 1050 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1061 "src/compiler/control-flow-optimizer.h", | 1061 "src/compiler/control-flow-optimizer.h", |
| 1062 "src/compiler/dead-code-elimination.cc", | 1062 "src/compiler/dead-code-elimination.cc", |
| 1063 "src/compiler/dead-code-elimination.h", | 1063 "src/compiler/dead-code-elimination.h", |
| 1064 "src/compiler/diamond.h", | 1064 "src/compiler/diamond.h", |
| 1065 "src/compiler/effect-control-linearizer.cc", | 1065 "src/compiler/effect-control-linearizer.cc", |
| 1066 "src/compiler/effect-control-linearizer.h", | 1066 "src/compiler/effect-control-linearizer.h", |
| 1067 "src/compiler/escape-analysis-reducer.cc", | 1067 "src/compiler/escape-analysis-reducer.cc", |
| 1068 "src/compiler/escape-analysis-reducer.h", | 1068 "src/compiler/escape-analysis-reducer.h", |
| 1069 "src/compiler/escape-analysis.cc", | 1069 "src/compiler/escape-analysis.cc", |
| 1070 "src/compiler/escape-analysis.h", | 1070 "src/compiler/escape-analysis.h", |
| 1071 "src/compiler/ffi-compiler.cc", |
| 1072 "src/compiler/ffi-compiler.h", |
| 1071 "src/compiler/frame-elider.cc", | 1073 "src/compiler/frame-elider.cc", |
| 1072 "src/compiler/frame-elider.h", | 1074 "src/compiler/frame-elider.h", |
| 1073 "src/compiler/frame-states.cc", | 1075 "src/compiler/frame-states.cc", |
| 1074 "src/compiler/frame-states.h", | 1076 "src/compiler/frame-states.h", |
| 1075 "src/compiler/frame.cc", | 1077 "src/compiler/frame.cc", |
| 1076 "src/compiler/frame.h", | 1078 "src/compiler/frame.h", |
| 1077 "src/compiler/gap-resolver.cc", | 1079 "src/compiler/gap-resolver.cc", |
| 1078 "src/compiler/gap-resolver.h", | 1080 "src/compiler/gap-resolver.h", |
| 1079 "src/compiler/graph-assembler.cc", | 1081 "src/compiler/graph-assembler.cc", |
| 1080 "src/compiler/graph-assembler.h", | 1082 "src/compiler/graph-assembler.h", |
| (...skipping 1938 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3019 ] | 3021 ] |
| 3020 | 3022 |
| 3021 configs = [ | 3023 configs = [ |
| 3022 ":external_config", | 3024 ":external_config", |
| 3023 ":internal_config_base", | 3025 ":internal_config_base", |
| 3024 ] | 3026 ] |
| 3025 } | 3027 } |
| 3026 | 3028 |
| 3027 v8_fuzzer("wasm_data_section_fuzzer") { | 3029 v8_fuzzer("wasm_data_section_fuzzer") { |
| 3028 } | 3030 } |
| OLD | NEW |