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 921 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
932 "src/code-stubs-hydrogen.cc", | 932 "src/code-stubs-hydrogen.cc", |
933 "src/code-stubs.cc", | 933 "src/code-stubs.cc", |
934 "src/code-stubs.h", | 934 "src/code-stubs.h", |
935 "src/codegen.cc", | 935 "src/codegen.cc", |
936 "src/codegen.h", | 936 "src/codegen.h", |
937 "src/collector.h", | 937 "src/collector.h", |
938 "src/compilation-cache.cc", | 938 "src/compilation-cache.cc", |
939 "src/compilation-cache.h", | 939 "src/compilation-cache.h", |
940 "src/compilation-dependencies.cc", | 940 "src/compilation-dependencies.cc", |
941 "src/compilation-dependencies.h", | 941 "src/compilation-dependencies.h", |
| 942 "src/compilation-info.cc", |
| 943 "src/compilation-info.h", |
942 "src/compilation-statistics.cc", | 944 "src/compilation-statistics.cc", |
943 "src/compilation-statistics.h", | 945 "src/compilation-statistics.h", |
944 "src/compiler-dispatcher/compiler-dispatcher-job.cc", | 946 "src/compiler-dispatcher/compiler-dispatcher-job.cc", |
945 "src/compiler-dispatcher/compiler-dispatcher-job.h", | 947 "src/compiler-dispatcher/compiler-dispatcher-job.h", |
946 "src/compiler-dispatcher/optimizing-compile-dispatcher.cc", | 948 "src/compiler-dispatcher/optimizing-compile-dispatcher.cc", |
947 "src/compiler-dispatcher/optimizing-compile-dispatcher.h", | 949 "src/compiler-dispatcher/optimizing-compile-dispatcher.h", |
948 "src/compiler.cc", | 950 "src/compiler.cc", |
949 "src/compiler.h", | 951 "src/compiler.h", |
950 "src/compiler/access-builder.cc", | 952 "src/compiler/access-builder.cc", |
951 "src/compiler/access-builder.h", | 953 "src/compiler/access-builder.h", |
(...skipping 1625 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2577 | 2579 |
2578 deps = [ | 2580 deps = [ |
2579 ":fuzzer_support", | 2581 ":fuzzer_support", |
2580 ] | 2582 ] |
2581 | 2583 |
2582 configs = [ ":internal_config" ] | 2584 configs = [ ":internal_config" ] |
2583 } | 2585 } |
2584 | 2586 |
2585 v8_fuzzer("wasm_asmjs_fuzzer") { | 2587 v8_fuzzer("wasm_asmjs_fuzzer") { |
2586 } | 2588 } |
OLD | NEW |