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

Side by Side Diff: BUILD.gn

Issue 1743263003: S390: Initial impl of debug and ic (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fix s390 files under correct target in BUILD.gn 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/debug/s390/debug-s390.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 1608 matching lines...) Expand 10 before | Expand all | Expand 10 after
1619 "src/mips64/interface-descriptors-mips64.cc", 1619 "src/mips64/interface-descriptors-mips64.cc",
1620 "src/mips64/macro-assembler-mips64.cc", 1620 "src/mips64/macro-assembler-mips64.cc",
1621 "src/mips64/macro-assembler-mips64.h", 1621 "src/mips64/macro-assembler-mips64.h",
1622 "src/mips64/simulator-mips64.cc", 1622 "src/mips64/simulator-mips64.cc",
1623 "src/mips64/simulator-mips64.h", 1623 "src/mips64/simulator-mips64.h",
1624 "src/regexp/mips64/regexp-macro-assembler-mips64.cc", 1624 "src/regexp/mips64/regexp-macro-assembler-mips64.cc",
1625 "src/regexp/mips64/regexp-macro-assembler-mips64.h", 1625 "src/regexp/mips64/regexp-macro-assembler-mips64.h",
1626 ] 1626 ]
1627 } else if (v8_target_arch == "s390" || v8_target_arch == "s390x") { 1627 } else if (v8_target_arch == "s390" || v8_target_arch == "s390x") {
1628 sources += [ 1628 sources += [
1629 "src/debug/s390/debug-s390.cc",
1630 "src/ic/s390/access-compiler-s390.cc",
1631 "src/ic/s390/handler-compiler-s390.cc",
1632 "src/ic/s390/ic-compiler-s390.cc",
1633 "src/ic/s390/ic-s390.cc",
1634 "src/ic/s390/stub-cache-s390.cc",
1629 "src/s390/assembler-s390-inl.h", 1635 "src/s390/assembler-s390-inl.h",
1630 "src/s390/assembler-s390.cc", 1636 "src/s390/assembler-s390.cc",
1631 "src/s390/assembler-s390.h", 1637 "src/s390/assembler-s390.h",
1632 "src/s390/builtins-s390.cc", 1638 "src/s390/builtins-s390.cc",
1633 "src/s390/code-stubs-s390.cc", 1639 "src/s390/code-stubs-s390.cc",
1634 "src/s390/code-stubs-s390.h", 1640 "src/s390/code-stubs-s390.h",
1635 "src/s390/codegen-s390.cc", 1641 "src/s390/codegen-s390.cc",
1636 "src/s390/codegen-s390.h", 1642 "src/s390/codegen-s390.h",
1637 "src/s390/constants-s390.cc", 1643 "src/s390/constants-s390.cc",
1638 "src/s390/constants-s390.h", 1644 "src/s390/constants-s390.h",
(...skipping 380 matching lines...) Expand 10 before | Expand all | Expand 10 after
2019 2025
2020 configs -= [ "//build/config/compiler:chromium_code" ] 2026 configs -= [ "//build/config/compiler:chromium_code" ]
2021 configs += [ "//build/config/compiler:no_chromium_code" ] 2027 configs += [ "//build/config/compiler:no_chromium_code" ]
2022 configs += [ 2028 configs += [
2023 ":internal_config", 2029 ":internal_config",
2024 ":libplatform_config", 2030 ":libplatform_config",
2025 ":features", 2031 ":features",
2026 ":toolchain", 2032 ":toolchain",
2027 ] 2033 ]
2028 } 2034 }
OLDNEW
« no previous file with comments | « no previous file | src/debug/s390/debug-s390.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698