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 1627 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1638 "src/regexp/mips64/regexp-macro-assembler-mips64.cc", | 1638 "src/regexp/mips64/regexp-macro-assembler-mips64.cc", |
1639 "src/regexp/mips64/regexp-macro-assembler-mips64.h", | 1639 "src/regexp/mips64/regexp-macro-assembler-mips64.h", |
1640 ] | 1640 ] |
1641 } else if (v8_target_arch == "s390" || v8_target_arch == "s390x") { | 1641 } else if (v8_target_arch == "s390" || v8_target_arch == "s390x") { |
1642 sources += [ | 1642 sources += [ |
1643 "src/compiler/s390/code-generator-s390.cc", | 1643 "src/compiler/s390/code-generator-s390.cc", |
1644 "src/compiler/s390/instruction-codes-s390.h", | 1644 "src/compiler/s390/instruction-codes-s390.h", |
1645 "src/compiler/s390/instruction-scheduler-s390.cc", | 1645 "src/compiler/s390/instruction-scheduler-s390.cc", |
1646 "src/compiler/s390/instruction-selector-s390.cc", | 1646 "src/compiler/s390/instruction-selector-s390.cc", |
1647 "src/debug/s390/debug-s390.cc", | 1647 "src/debug/s390/debug-s390.cc", |
| 1648 "src/full-codegen/s390/full-codegen-s390.cc", |
1648 "src/ic/s390/access-compiler-s390.cc", | 1649 "src/ic/s390/access-compiler-s390.cc", |
1649 "src/ic/s390/handler-compiler-s390.cc", | 1650 "src/ic/s390/handler-compiler-s390.cc", |
1650 "src/ic/s390/ic-compiler-s390.cc", | 1651 "src/ic/s390/ic-compiler-s390.cc", |
1651 "src/ic/s390/ic-s390.cc", | 1652 "src/ic/s390/ic-s390.cc", |
1652 "src/ic/s390/stub-cache-s390.cc", | 1653 "src/ic/s390/stub-cache-s390.cc", |
1653 "src/s390/assembler-s390-inl.h", | 1654 "src/s390/assembler-s390-inl.h", |
1654 "src/s390/assembler-s390.cc", | 1655 "src/s390/assembler-s390.cc", |
1655 "src/s390/assembler-s390.h", | 1656 "src/s390/assembler-s390.h", |
1656 "src/s390/builtins-s390.cc", | 1657 "src/s390/builtins-s390.cc", |
1657 "src/s390/code-stubs-s390.cc", | 1658 "src/s390/code-stubs-s390.cc", |
(...skipping 424 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2082 | 2083 |
2083 configs -= [ "//build/config/compiler:chromium_code" ] | 2084 configs -= [ "//build/config/compiler:chromium_code" ] |
2084 configs += [ "//build/config/compiler:no_chromium_code" ] | 2085 configs += [ "//build/config/compiler:no_chromium_code" ] |
2085 configs += [ | 2086 configs += [ |
2086 ":internal_config", | 2087 ":internal_config", |
2087 ":libplatform_config", | 2088 ":libplatform_config", |
2088 ":features", | 2089 ":features", |
2089 ":toolchain", | 2090 ":toolchain", |
2090 ] | 2091 ] |
2091 } | 2092 } |
OLD | NEW |