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 1049 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1060 "src/compiler/escape-analysis.cc", | 1060 "src/compiler/escape-analysis.cc", |
1061 "src/compiler/escape-analysis.h", | 1061 "src/compiler/escape-analysis.h", |
1062 "src/compiler/frame-elider.cc", | 1062 "src/compiler/frame-elider.cc", |
1063 "src/compiler/frame-elider.h", | 1063 "src/compiler/frame-elider.h", |
1064 "src/compiler/frame-states.cc", | 1064 "src/compiler/frame-states.cc", |
1065 "src/compiler/frame-states.h", | 1065 "src/compiler/frame-states.h", |
1066 "src/compiler/frame.cc", | 1066 "src/compiler/frame.cc", |
1067 "src/compiler/frame.h", | 1067 "src/compiler/frame.h", |
1068 "src/compiler/gap-resolver.cc", | 1068 "src/compiler/gap-resolver.cc", |
1069 "src/compiler/gap-resolver.h", | 1069 "src/compiler/gap-resolver.h", |
| 1070 "src/compiler/graph-assembler.cc", |
| 1071 "src/compiler/graph-assembler.h", |
1070 "src/compiler/graph-reducer.cc", | 1072 "src/compiler/graph-reducer.cc", |
1071 "src/compiler/graph-reducer.h", | 1073 "src/compiler/graph-reducer.h", |
1072 "src/compiler/graph-replay.cc", | 1074 "src/compiler/graph-replay.cc", |
1073 "src/compiler/graph-replay.h", | 1075 "src/compiler/graph-replay.h", |
1074 "src/compiler/graph-trimmer.cc", | 1076 "src/compiler/graph-trimmer.cc", |
1075 "src/compiler/graph-trimmer.h", | 1077 "src/compiler/graph-trimmer.h", |
1076 "src/compiler/graph-visualizer.cc", | 1078 "src/compiler/graph-visualizer.cc", |
1077 "src/compiler/graph-visualizer.h", | 1079 "src/compiler/graph-visualizer.h", |
1078 "src/compiler/graph.cc", | 1080 "src/compiler/graph.cc", |
1079 "src/compiler/graph.h", | 1081 "src/compiler/graph.h", |
(...skipping 1924 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3004 ] | 3006 ] |
3005 | 3007 |
3006 configs = [ | 3008 configs = [ |
3007 ":external_config", | 3009 ":external_config", |
3008 ":internal_config_base", | 3010 ":internal_config_base", |
3009 ] | 3011 ] |
3010 } | 3012 } |
3011 | 3013 |
3012 v8_fuzzer("wasm_data_section_fuzzer") { | 3014 v8_fuzzer("wasm_data_section_fuzzer") { |
3013 } | 3015 } |
OLD | NEW |