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

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: 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 1566 matching lines...) Expand 10 before | Expand all | Expand 10 after
1577 "src/mips/interface-descriptors-mips.cc", 1577 "src/mips/interface-descriptors-mips.cc",
1578 "src/mips/macro-assembler-mips.cc", 1578 "src/mips/macro-assembler-mips.cc",
1579 "src/mips/macro-assembler-mips.h", 1579 "src/mips/macro-assembler-mips.h",
1580 "src/mips/simulator-mips.cc", 1580 "src/mips/simulator-mips.cc",
1581 "src/mips/simulator-mips.h", 1581 "src/mips/simulator-mips.h",
1582 "src/regexp/mips/regexp-macro-assembler-mips.cc", 1582 "src/regexp/mips/regexp-macro-assembler-mips.cc",
1583 "src/regexp/mips/regexp-macro-assembler-mips.h", 1583 "src/regexp/mips/regexp-macro-assembler-mips.h",
1584 ] 1584 ]
1585 } else if (v8_target_arch == "mips64el") { 1585 } else if (v8_target_arch == "mips64el") {
1586 sources += [ 1586 sources += [
1587 "src/debug/s390/debug-s390.cc",
Jakob Kummerow 2016/03/01 09:57:41 Surely this was supposed to go in the 'if (v8_targ
1588 "src/ic/s390/access-compiler-s390.cc",
1589 "src/ic/s390/handler-compiler-s390.cc",
1590 "src/ic/s390/ic-compiler-s390.cc",
1591 "src/ic/s390/ic-s390.cc",
1592 "src/ic/s390/stub-cache-s390.cc",
1587 "compiler/mips64/code-generator-mips64.cc", 1593 "compiler/mips64/code-generator-mips64.cc",
1588 "compiler/mips64/instruction-codes-mips64.h", 1594 "compiler/mips64/instruction-codes-mips64.h",
1589 "compiler/mips64/instruction-scheduler-mips64.cc", 1595 "compiler/mips64/instruction-scheduler-mips64.cc",
1590 "compiler/mips64/instruction-selector-mips64.cc", 1596 "compiler/mips64/instruction-selector-mips64.cc",
1591 "src/crankshaft/mips64/lithium-codegen-mips64.cc", 1597 "src/crankshaft/mips64/lithium-codegen-mips64.cc",
1592 "src/crankshaft/mips64/lithium-codegen-mips64.h", 1598 "src/crankshaft/mips64/lithium-codegen-mips64.h",
1593 "src/crankshaft/mips64/lithium-gap-resolver-mips64.cc", 1599 "src/crankshaft/mips64/lithium-gap-resolver-mips64.cc",
1594 "src/crankshaft/mips64/lithium-gap-resolver-mips64.h", 1600 "src/crankshaft/mips64/lithium-gap-resolver-mips64.h",
1595 "src/crankshaft/mips64/lithium-mips64.cc", 1601 "src/crankshaft/mips64/lithium-mips64.cc",
1596 "src/crankshaft/mips64/lithium-mips64.h", 1602 "src/crankshaft/mips64/lithium-mips64.h",
(...skipping 422 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