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/mips.gni") | 7 import("//build/config/mips.gni") |
8 import("//build/config/sanitizers/sanitizers.gni") | 8 import("//build/config/sanitizers/sanitizers.gni") |
9 | 9 |
10 if (is_android) { | 10 if (is_android) { |
(...skipping 823 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
834 "src/compiler/ast-loop-assignment-analyzer.h", | 834 "src/compiler/ast-loop-assignment-analyzer.h", |
835 "src/compiler/basic-block-instrumentor.cc", | 835 "src/compiler/basic-block-instrumentor.cc", |
836 "src/compiler/basic-block-instrumentor.h", | 836 "src/compiler/basic-block-instrumentor.h", |
837 "src/compiler/branch-elimination.cc", | 837 "src/compiler/branch-elimination.cc", |
838 "src/compiler/branch-elimination.h", | 838 "src/compiler/branch-elimination.h", |
839 "src/compiler/bytecode-branch-analysis.cc", | 839 "src/compiler/bytecode-branch-analysis.cc", |
840 "src/compiler/bytecode-branch-analysis.h", | 840 "src/compiler/bytecode-branch-analysis.h", |
841 "src/compiler/bytecode-graph-builder.cc", | 841 "src/compiler/bytecode-graph-builder.cc", |
842 "src/compiler/bytecode-graph-builder.h", | 842 "src/compiler/bytecode-graph-builder.h", |
843 "src/compiler/c-linkage.cc", | 843 "src/compiler/c-linkage.cc", |
| 844 "src/compiler/checkpoint-elimination.cc", |
| 845 "src/compiler/checkpoint-elimination.h", |
844 "src/compiler/coalesced-live-ranges.cc", | 846 "src/compiler/coalesced-live-ranges.cc", |
845 "src/compiler/coalesced-live-ranges.h", | 847 "src/compiler/coalesced-live-ranges.h", |
846 "src/compiler/code-assembler.cc", | 848 "src/compiler/code-assembler.cc", |
847 "src/compiler/code-assembler.h", | 849 "src/compiler/code-assembler.h", |
848 "src/compiler/code-generator-impl.h", | 850 "src/compiler/code-generator-impl.h", |
849 "src/compiler/code-generator.cc", | 851 "src/compiler/code-generator.cc", |
850 "src/compiler/code-generator.h", | 852 "src/compiler/code-generator.h", |
851 "src/compiler/common-node-cache.cc", | 853 "src/compiler/common-node-cache.cc", |
852 "src/compiler/common-node-cache.h", | 854 "src/compiler/common-node-cache.h", |
853 "src/compiler/common-operator-reducer.cc", | 855 "src/compiler/common-operator-reducer.cc", |
(...skipping 1347 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2201 sources = [ | 2203 sources = [ |
2202 "test/fuzzer/wasm-asmjs.cc", | 2204 "test/fuzzer/wasm-asmjs.cc", |
2203 ] | 2205 ] |
2204 | 2206 |
2205 deps = [ | 2207 deps = [ |
2206 ":fuzzer_support", | 2208 ":fuzzer_support", |
2207 ] | 2209 ] |
2208 | 2210 |
2209 configs = [ ":internal_config" ] | 2211 configs = [ ":internal_config" ] |
2210 } | 2212 } |
OLD | NEW |