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 949 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
960 "src/compiler/ast-loop-assignment-analyzer.cc", | 960 "src/compiler/ast-loop-assignment-analyzer.cc", |
961 "src/compiler/ast-loop-assignment-analyzer.h", | 961 "src/compiler/ast-loop-assignment-analyzer.h", |
962 "src/compiler/basic-block-instrumentor.cc", | 962 "src/compiler/basic-block-instrumentor.cc", |
963 "src/compiler/basic-block-instrumentor.h", | 963 "src/compiler/basic-block-instrumentor.h", |
964 "src/compiler/branch-elimination.cc", | 964 "src/compiler/branch-elimination.cc", |
965 "src/compiler/branch-elimination.h", | 965 "src/compiler/branch-elimination.h", |
966 "src/compiler/bytecode-branch-analysis.cc", | 966 "src/compiler/bytecode-branch-analysis.cc", |
967 "src/compiler/bytecode-branch-analysis.h", | 967 "src/compiler/bytecode-branch-analysis.h", |
968 "src/compiler/bytecode-graph-builder.cc", | 968 "src/compiler/bytecode-graph-builder.cc", |
969 "src/compiler/bytecode-graph-builder.h", | 969 "src/compiler/bytecode-graph-builder.h", |
| 970 "src/compiler/bytecode-loop-analysis.cc", |
| 971 "src/compiler/bytecode-loop-analysis.h", |
970 "src/compiler/c-linkage.cc", | 972 "src/compiler/c-linkage.cc", |
971 "src/compiler/checkpoint-elimination.cc", | 973 "src/compiler/checkpoint-elimination.cc", |
972 "src/compiler/checkpoint-elimination.h", | 974 "src/compiler/checkpoint-elimination.h", |
973 "src/compiler/code-assembler.cc", | 975 "src/compiler/code-assembler.cc", |
974 "src/compiler/code-assembler.h", | 976 "src/compiler/code-assembler.h", |
975 "src/compiler/code-generator-impl.h", | 977 "src/compiler/code-generator-impl.h", |
976 "src/compiler/code-generator.cc", | 978 "src/compiler/code-generator.cc", |
977 "src/compiler/code-generator.h", | 979 "src/compiler/code-generator.h", |
978 "src/compiler/common-node-cache.cc", | 980 "src/compiler/common-node-cache.cc", |
979 "src/compiler/common-node-cache.h", | 981 "src/compiler/common-node-cache.h", |
(...skipping 1559 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2539 | 2541 |
2540 deps = [ | 2542 deps = [ |
2541 ":fuzzer_support", | 2543 ":fuzzer_support", |
2542 ] | 2544 ] |
2543 | 2545 |
2544 configs = [ ":internal_config" ] | 2546 configs = [ ":internal_config" ] |
2545 } | 2547 } |
2546 | 2548 |
2547 v8_fuzzer("wasm_asmjs_fuzzer") { | 2549 v8_fuzzer("wasm_asmjs_fuzzer") { |
2548 } | 2550 } |
OLD | NEW |