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 941 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
952 "src/compiler/ast-loop-assignment-analyzer.cc", | 952 "src/compiler/ast-loop-assignment-analyzer.cc", |
953 "src/compiler/ast-loop-assignment-analyzer.h", | 953 "src/compiler/ast-loop-assignment-analyzer.h", |
954 "src/compiler/basic-block-instrumentor.cc", | 954 "src/compiler/basic-block-instrumentor.cc", |
955 "src/compiler/basic-block-instrumentor.h", | 955 "src/compiler/basic-block-instrumentor.h", |
956 "src/compiler/branch-elimination.cc", | 956 "src/compiler/branch-elimination.cc", |
957 "src/compiler/branch-elimination.h", | 957 "src/compiler/branch-elimination.h", |
958 "src/compiler/bytecode-branch-analysis.cc", | 958 "src/compiler/bytecode-branch-analysis.cc", |
959 "src/compiler/bytecode-branch-analysis.h", | 959 "src/compiler/bytecode-branch-analysis.h", |
960 "src/compiler/bytecode-graph-builder.cc", | 960 "src/compiler/bytecode-graph-builder.cc", |
961 "src/compiler/bytecode-graph-builder.h", | 961 "src/compiler/bytecode-graph-builder.h", |
| 962 "src/compiler/bytecode-loop-analysis.cc", |
| 963 "src/compiler/bytecode-loop-analysis.h", |
962 "src/compiler/c-linkage.cc", | 964 "src/compiler/c-linkage.cc", |
963 "src/compiler/checkpoint-elimination.cc", | 965 "src/compiler/checkpoint-elimination.cc", |
964 "src/compiler/checkpoint-elimination.h", | 966 "src/compiler/checkpoint-elimination.h", |
965 "src/compiler/code-assembler.cc", | 967 "src/compiler/code-assembler.cc", |
966 "src/compiler/code-assembler.h", | 968 "src/compiler/code-assembler.h", |
967 "src/compiler/code-generator-impl.h", | 969 "src/compiler/code-generator-impl.h", |
968 "src/compiler/code-generator.cc", | 970 "src/compiler/code-generator.cc", |
969 "src/compiler/code-generator.h", | 971 "src/compiler/code-generator.h", |
970 "src/compiler/common-node-cache.cc", | 972 "src/compiler/common-node-cache.cc", |
971 "src/compiler/common-node-cache.h", | 973 "src/compiler/common-node-cache.h", |
(...skipping 1557 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2529 | 2531 |
2530 deps = [ | 2532 deps = [ |
2531 ":fuzzer_support", | 2533 ":fuzzer_support", |
2532 ] | 2534 ] |
2533 | 2535 |
2534 configs = [ ":internal_config" ] | 2536 configs = [ ":internal_config" ] |
2535 } | 2537 } |
2536 | 2538 |
2537 v8_fuzzer("wasm_asmjs_fuzzer") { | 2539 v8_fuzzer("wasm_asmjs_fuzzer") { |
2538 } | 2540 } |
OLD | NEW |