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 1000 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1011 "src/compiler/all-nodes.cc", | 1011 "src/compiler/all-nodes.cc", |
1012 "src/compiler/all-nodes.h", | 1012 "src/compiler/all-nodes.h", |
1013 "src/compiler/ast-graph-builder.cc", | 1013 "src/compiler/ast-graph-builder.cc", |
1014 "src/compiler/ast-graph-builder.h", | 1014 "src/compiler/ast-graph-builder.h", |
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-branch-analysis.cc", | 1021 "src/compiler/bytecode-analysis.cc", |
1022 "src/compiler/bytecode-branch-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-loop-analysis.cc", | |
1026 "src/compiler/bytecode-loop-analysis.h", | |
1027 "src/compiler/c-linkage.cc", | 1025 "src/compiler/c-linkage.cc", |
1028 "src/compiler/checkpoint-elimination.cc", | 1026 "src/compiler/checkpoint-elimination.cc", |
1029 "src/compiler/checkpoint-elimination.h", | 1027 "src/compiler/checkpoint-elimination.h", |
1030 "src/compiler/code-assembler.cc", | 1028 "src/compiler/code-assembler.cc", |
1031 "src/compiler/code-assembler.h", | 1029 "src/compiler/code-assembler.h", |
1032 "src/compiler/code-generator-impl.h", | 1030 "src/compiler/code-generator-impl.h", |
1033 "src/compiler/code-generator.cc", | 1031 "src/compiler/code-generator.cc", |
1034 "src/compiler/code-generator.h", | 1032 "src/compiler/code-generator.h", |
1035 "src/compiler/common-node-cache.cc", | 1033 "src/compiler/common-node-cache.cc", |
1036 "src/compiler/common-node-cache.h", | 1034 "src/compiler/common-node-cache.h", |
(...skipping 1950 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2987 ] | 2985 ] |
2988 | 2986 |
2989 configs = [ | 2987 configs = [ |
2990 ":external_config", | 2988 ":external_config", |
2991 ":internal_config_base", | 2989 ":internal_config_base", |
2992 ] | 2990 ] |
2993 } | 2991 } |
2994 | 2992 |
2995 v8_fuzzer("wasm_data_section_fuzzer") { | 2993 v8_fuzzer("wasm_data_section_fuzzer") { |
2996 } | 2994 } |
OLD | NEW |