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