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 983 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
994 "src/compilation-dependencies.cc", | 994 "src/compilation-dependencies.cc", |
995 "src/compilation-dependencies.h", | 995 "src/compilation-dependencies.h", |
996 "src/compilation-info.cc", | 996 "src/compilation-info.cc", |
997 "src/compilation-info.h", | 997 "src/compilation-info.h", |
998 "src/compilation-statistics.cc", | 998 "src/compilation-statistics.cc", |
999 "src/compilation-statistics.h", | 999 "src/compilation-statistics.h", |
1000 "src/compiler-dispatcher/compiler-dispatcher-job.cc", | 1000 "src/compiler-dispatcher/compiler-dispatcher-job.cc", |
1001 "src/compiler-dispatcher/compiler-dispatcher-job.h", | 1001 "src/compiler-dispatcher/compiler-dispatcher-job.h", |
1002 "src/compiler-dispatcher/compiler-dispatcher-tracer.cc", | 1002 "src/compiler-dispatcher/compiler-dispatcher-tracer.cc", |
1003 "src/compiler-dispatcher/compiler-dispatcher-tracer.h", | 1003 "src/compiler-dispatcher/compiler-dispatcher-tracer.h", |
| 1004 "src/compiler-dispatcher/compiler-dispatcher.cc", |
| 1005 "src/compiler-dispatcher/compiler-dispatcher.h", |
1004 "src/compiler-dispatcher/optimizing-compile-dispatcher.cc", | 1006 "src/compiler-dispatcher/optimizing-compile-dispatcher.cc", |
1005 "src/compiler-dispatcher/optimizing-compile-dispatcher.h", | 1007 "src/compiler-dispatcher/optimizing-compile-dispatcher.h", |
1006 "src/compiler.cc", | 1008 "src/compiler.cc", |
1007 "src/compiler.h", | 1009 "src/compiler.h", |
1008 "src/compiler/access-builder.cc", | 1010 "src/compiler/access-builder.cc", |
1009 "src/compiler/access-builder.h", | 1011 "src/compiler/access-builder.h", |
1010 "src/compiler/access-info.cc", | 1012 "src/compiler/access-info.cc", |
1011 "src/compiler/access-info.h", | 1013 "src/compiler/access-info.h", |
1012 "src/compiler/all-nodes.cc", | 1014 "src/compiler/all-nodes.cc", |
1013 "src/compiler/all-nodes.h", | 1015 "src/compiler/all-nodes.h", |
(...skipping 1980 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2994 ] | 2996 ] |
2995 | 2997 |
2996 configs = [ | 2998 configs = [ |
2997 ":external_config", | 2999 ":external_config", |
2998 ":internal_config_base", | 3000 ":internal_config_base", |
2999 ] | 3001 ] |
3000 } | 3002 } |
3001 | 3003 |
3002 v8_fuzzer("wasm_data_section_fuzzer") { | 3004 v8_fuzzer("wasm_data_section_fuzzer") { |
3003 } | 3005 } |
OLD | NEW |