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 1716 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1727 "src/mips/interface-descriptors-mips.cc", | 1727 "src/mips/interface-descriptors-mips.cc", |
1728 "src/mips/macro-assembler-mips.cc", | 1728 "src/mips/macro-assembler-mips.cc", |
1729 "src/mips/macro-assembler-mips.h", | 1729 "src/mips/macro-assembler-mips.h", |
1730 "src/mips/simulator-mips.cc", | 1730 "src/mips/simulator-mips.cc", |
1731 "src/mips/simulator-mips.h", | 1731 "src/mips/simulator-mips.h", |
1732 "src/regexp/mips/regexp-macro-assembler-mips.cc", | 1732 "src/regexp/mips/regexp-macro-assembler-mips.cc", |
1733 "src/regexp/mips/regexp-macro-assembler-mips.h", | 1733 "src/regexp/mips/regexp-macro-assembler-mips.h", |
1734 ] | 1734 ] |
1735 } else if (v8_target_arch == "mips64el") { | 1735 } else if (v8_target_arch == "mips64el") { |
1736 sources += [ | 1736 sources += [ |
1737 "compiler/mips64/code-generator-mips64.cc", | 1737 "src/compiler/mips64/code-generator-mips64.cc", |
1738 "compiler/mips64/instruction-codes-mips64.h", | 1738 "src/compiler/mips64/instruction-codes-mips64.h", |
1739 "compiler/mips64/instruction-scheduler-mips64.cc", | 1739 "src/compiler/mips64/instruction-scheduler-mips64.cc", |
1740 "compiler/mips64/instruction-selector-mips64.cc", | 1740 "src/compiler/mips64/instruction-selector-mips64.cc", |
1741 "src/crankshaft/mips64/lithium-codegen-mips64.cc", | 1741 "src/crankshaft/mips64/lithium-codegen-mips64.cc", |
1742 "src/crankshaft/mips64/lithium-codegen-mips64.h", | 1742 "src/crankshaft/mips64/lithium-codegen-mips64.h", |
1743 "src/crankshaft/mips64/lithium-gap-resolver-mips64.cc", | 1743 "src/crankshaft/mips64/lithium-gap-resolver-mips64.cc", |
1744 "src/crankshaft/mips64/lithium-gap-resolver-mips64.h", | 1744 "src/crankshaft/mips64/lithium-gap-resolver-mips64.h", |
1745 "src/crankshaft/mips64/lithium-mips64.cc", | 1745 "src/crankshaft/mips64/lithium-mips64.cc", |
1746 "src/crankshaft/mips64/lithium-mips64.h", | 1746 "src/crankshaft/mips64/lithium-mips64.h", |
1747 "src/debug/mips64/debug-mips64.cc", | 1747 "src/debug/mips64/debug-mips64.cc", |
1748 "src/full-codegen/mips64/full-codegen-mips64.cc", | 1748 "src/full-codegen/mips64/full-codegen-mips64.cc", |
1749 "src/ic/mips64/access-compiler-mips64.cc", | 1749 "src/ic/mips64/access-compiler-mips64.cc", |
1750 "src/ic/mips64/handler-compiler-mips64.cc", | 1750 "src/ic/mips64/handler-compiler-mips64.cc", |
(...skipping 436 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2187 sources = [ | 2187 sources = [ |
2188 "test/fuzzer/wasm-asmjs.cc", | 2188 "test/fuzzer/wasm-asmjs.cc", |
2189 ] | 2189 ] |
2190 | 2190 |
2191 deps = [ | 2191 deps = [ |
2192 ":fuzzer_support", | 2192 ":fuzzer_support", |
2193 ] | 2193 ] |
2194 | 2194 |
2195 configs = [ ":internal_config" ] | 2195 configs = [ ":internal_config" ] |
2196 } | 2196 } |
OLD | NEW |