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 1006 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1017 "src/compiler/ast-loop-assignment-analyzer.cc", | 1017 "src/compiler/ast-loop-assignment-analyzer.cc", |
1018 "src/compiler/ast-loop-assignment-analyzer.h", | 1018 "src/compiler/ast-loop-assignment-analyzer.h", |
1019 "src/compiler/basic-block-instrumentor.cc", | 1019 "src/compiler/basic-block-instrumentor.cc", |
1020 "src/compiler/basic-block-instrumentor.h", | 1020 "src/compiler/basic-block-instrumentor.h", |
1021 "src/compiler/branch-elimination.cc", | 1021 "src/compiler/branch-elimination.cc", |
1022 "src/compiler/branch-elimination.h", | 1022 "src/compiler/branch-elimination.h", |
1023 "src/compiler/bytecode-analysis.cc", | 1023 "src/compiler/bytecode-analysis.cc", |
1024 "src/compiler/bytecode-analysis.h", | 1024 "src/compiler/bytecode-analysis.h", |
1025 "src/compiler/bytecode-graph-builder.cc", | 1025 "src/compiler/bytecode-graph-builder.cc", |
1026 "src/compiler/bytecode-graph-builder.h", | 1026 "src/compiler/bytecode-graph-builder.h", |
| 1027 "src/compiler/bytecode-liveness-map.cc", |
| 1028 "src/compiler/bytecode-liveness-map.h", |
1027 "src/compiler/c-linkage.cc", | 1029 "src/compiler/c-linkage.cc", |
1028 "src/compiler/checkpoint-elimination.cc", | 1030 "src/compiler/checkpoint-elimination.cc", |
1029 "src/compiler/checkpoint-elimination.h", | 1031 "src/compiler/checkpoint-elimination.h", |
1030 "src/compiler/code-assembler.cc", | 1032 "src/compiler/code-assembler.cc", |
1031 "src/compiler/code-assembler.h", | 1033 "src/compiler/code-assembler.h", |
1032 "src/compiler/code-generator-impl.h", | 1034 "src/compiler/code-generator-impl.h", |
1033 "src/compiler/code-generator.cc", | 1035 "src/compiler/code-generator.cc", |
1034 "src/compiler/code-generator.h", | 1036 "src/compiler/code-generator.h", |
1035 "src/compiler/common-node-cache.cc", | 1037 "src/compiler/common-node-cache.cc", |
1036 "src/compiler/common-node-cache.h", | 1038 "src/compiler/common-node-cache.h", |
(...skipping 1949 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2986 ] | 2988 ] |
2987 | 2989 |
2988 configs = [ | 2990 configs = [ |
2989 ":external_config", | 2991 ":external_config", |
2990 ":internal_config_base", | 2992 ":internal_config_base", |
2991 ] | 2993 ] |
2992 } | 2994 } |
2993 | 2995 |
2994 v8_fuzzer("wasm_data_section_fuzzer") { | 2996 v8_fuzzer("wasm_data_section_fuzzer") { |
2995 } | 2997 } |
OLD | NEW |