Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(42)

Side by Side Diff: BUILD.gn

Issue 1763233003: S390: Initial Impl of Crankshaft features (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | src/crankshaft/hydrogen.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 1626 matching lines...) Expand 10 before | Expand all | Expand 10 after
1637 "src/mips64/simulator-mips64.h", 1637 "src/mips64/simulator-mips64.h",
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/crankshaft/s390/lithium-codegen-s390.cc",
1648 "src/crankshaft/s390/lithium-codegen-s390.h",
1649 "src/crankshaft/s390/lithium-gap-resolver-s390.cc",
1650 "src/crankshaft/s390/lithium-gap-resolver-s390.h",
1651 "src/crankshaft/s390/lithium-s390.cc",
1652 "src/crankshaft/s390/lithium-s390.h",
1647 "src/debug/s390/debug-s390.cc", 1653 "src/debug/s390/debug-s390.cc",
1648 "src/ic/s390/access-compiler-s390.cc", 1654 "src/ic/s390/access-compiler-s390.cc",
1649 "src/ic/s390/handler-compiler-s390.cc", 1655 "src/ic/s390/handler-compiler-s390.cc",
1650 "src/ic/s390/ic-compiler-s390.cc", 1656 "src/ic/s390/ic-compiler-s390.cc",
1651 "src/ic/s390/ic-s390.cc", 1657 "src/ic/s390/ic-s390.cc",
1652 "src/ic/s390/stub-cache-s390.cc", 1658 "src/ic/s390/stub-cache-s390.cc",
1653 "src/s390/assembler-s390-inl.h", 1659 "src/s390/assembler-s390-inl.h",
1654 "src/s390/assembler-s390.cc", 1660 "src/s390/assembler-s390.cc",
1655 "src/s390/assembler-s390.h", 1661 "src/s390/assembler-s390.h",
1656 "src/s390/builtins-s390.cc", 1662 "src/s390/builtins-s390.cc",
(...skipping 425 matching lines...) Expand 10 before | Expand all | Expand 10 after
2082 2088
2083 configs -= [ "//build/config/compiler:chromium_code" ] 2089 configs -= [ "//build/config/compiler:chromium_code" ]
2084 configs += [ "//build/config/compiler:no_chromium_code" ] 2090 configs += [ "//build/config/compiler:no_chromium_code" ]
2085 configs += [ 2091 configs += [
2086 ":internal_config", 2092 ":internal_config",
2087 ":libplatform_config", 2093 ":libplatform_config",
2088 ":features", 2094 ":features",
2089 ":toolchain", 2095 ":toolchain",
2090 ] 2096 ]
2091 } 2097 }
OLDNEW
« no previous file with comments | « no previous file | src/crankshaft/hydrogen.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698