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 1216 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1227 "src/compiler/frame-states.cc", | 1227 "src/compiler/frame-states.cc", |
1228 "src/compiler/frame-states.h", | 1228 "src/compiler/frame-states.h", |
1229 "src/compiler/frame.cc", | 1229 "src/compiler/frame.cc", |
1230 "src/compiler/frame.h", | 1230 "src/compiler/frame.h", |
1231 "src/compiler/gap-resolver.cc", | 1231 "src/compiler/gap-resolver.cc", |
1232 "src/compiler/gap-resolver.h", | 1232 "src/compiler/gap-resolver.h", |
1233 "src/compiler/graph-assembler.cc", | 1233 "src/compiler/graph-assembler.cc", |
1234 "src/compiler/graph-assembler.h", | 1234 "src/compiler/graph-assembler.h", |
1235 "src/compiler/graph-reducer.cc", | 1235 "src/compiler/graph-reducer.cc", |
1236 "src/compiler/graph-reducer.h", | 1236 "src/compiler/graph-reducer.h", |
1237 "src/compiler/graph-replay.cc", | |
1238 "src/compiler/graph-replay.h", | |
1239 "src/compiler/graph-trimmer.cc", | 1237 "src/compiler/graph-trimmer.cc", |
1240 "src/compiler/graph-trimmer.h", | 1238 "src/compiler/graph-trimmer.h", |
1241 "src/compiler/graph-visualizer.cc", | 1239 "src/compiler/graph-visualizer.cc", |
1242 "src/compiler/graph-visualizer.h", | 1240 "src/compiler/graph-visualizer.h", |
1243 "src/compiler/graph.cc", | 1241 "src/compiler/graph.cc", |
1244 "src/compiler/graph.h", | 1242 "src/compiler/graph.h", |
1245 "src/compiler/instruction-codes.h", | 1243 "src/compiler/instruction-codes.h", |
1246 "src/compiler/instruction-scheduler.cc", | 1244 "src/compiler/instruction-scheduler.cc", |
1247 "src/compiler/instruction-scheduler.h", | 1245 "src/compiler/instruction-scheduler.h", |
1248 "src/compiler/instruction-selector-impl.h", | 1246 "src/compiler/instruction-selector-impl.h", |
(...skipping 1986 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3235 ] | 3233 ] |
3236 | 3234 |
3237 configs = [ | 3235 configs = [ |
3238 ":external_config", | 3236 ":external_config", |
3239 ":internal_config_base", | 3237 ":internal_config_base", |
3240 ] | 3238 ] |
3241 } | 3239 } |
3242 | 3240 |
3243 v8_fuzzer("wasm_compile_fuzzer") { | 3241 v8_fuzzer("wasm_compile_fuzzer") { |
3244 } | 3242 } |
OLD | NEW |