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

Side by Side Diff: BUILD.gn

Issue 1768383002: S390: Initial impl of regexp (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: rebase to master and sort file in alphabetic ordering 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/regexp/jsregexp.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 1639 matching lines...) Expand 10 before | Expand all | Expand 10 after
1650 "src/crankshaft/s390/lithium-gap-resolver-s390.h", 1650 "src/crankshaft/s390/lithium-gap-resolver-s390.h",
1651 "src/crankshaft/s390/lithium-s390.cc", 1651 "src/crankshaft/s390/lithium-s390.cc",
1652 "src/crankshaft/s390/lithium-s390.h", 1652 "src/crankshaft/s390/lithium-s390.h",
1653 "src/debug/s390/debug-s390.cc", 1653 "src/debug/s390/debug-s390.cc",
1654 "src/full-codegen/s390/full-codegen-s390.cc", 1654 "src/full-codegen/s390/full-codegen-s390.cc",
1655 "src/ic/s390/access-compiler-s390.cc", 1655 "src/ic/s390/access-compiler-s390.cc",
1656 "src/ic/s390/handler-compiler-s390.cc", 1656 "src/ic/s390/handler-compiler-s390.cc",
1657 "src/ic/s390/ic-compiler-s390.cc", 1657 "src/ic/s390/ic-compiler-s390.cc",
1658 "src/ic/s390/ic-s390.cc", 1658 "src/ic/s390/ic-s390.cc",
1659 "src/ic/s390/stub-cache-s390.cc", 1659 "src/ic/s390/stub-cache-s390.cc",
1660 "src/s390/assembler-s390-inl.h", 1660 "src/regexp/s390/regexp-macro-assembler-s390.cc",
1661 "src/regexp/s390/regexp-macro-assembler-s390.h",
1661 "src/s390/assembler-s390.cc", 1662 "src/s390/assembler-s390.cc",
1662 "src/s390/assembler-s390.h", 1663 "src/s390/assembler-s390.h",
1664 "src/s390/assembler-s390-inl.h",
1663 "src/s390/builtins-s390.cc", 1665 "src/s390/builtins-s390.cc",
1666 "src/s390/codegen-s390.cc",
1667 "src/s390/codegen-s390.h",
1664 "src/s390/code-stubs-s390.cc", 1668 "src/s390/code-stubs-s390.cc",
1665 "src/s390/code-stubs-s390.h", 1669 "src/s390/code-stubs-s390.h",
1666 "src/s390/codegen-s390.cc",
1667 "src/s390/codegen-s390.h",
1668 "src/s390/constants-s390.cc", 1670 "src/s390/constants-s390.cc",
1669 "src/s390/constants-s390.h", 1671 "src/s390/constants-s390.h",
1670 "src/s390/cpu-s390.cc", 1672 "src/s390/cpu-s390.cc",
1671 "src/s390/deoptimizer-s390.cc", 1673 "src/s390/deoptimizer-s390.cc",
1672 "src/s390/disasm-s390.cc", 1674 "src/s390/disasm-s390.cc",
1673 "src/s390/frames-s390.cc", 1675 "src/s390/frames-s390.cc",
1674 "src/s390/frames-s390.h", 1676 "src/s390/frames-s390.h",
1675 "src/s390/interface-descriptors-s390.cc", 1677 "src/s390/interface-descriptors-s390.cc",
1676 "src/s390/macro-assembler-s390.cc", 1678 "src/s390/macro-assembler-s390.cc",
1677 "src/s390/macro-assembler-s390.h", 1679 "src/s390/macro-assembler-s390.h",
(...skipping 411 matching lines...) Expand 10 before | Expand all | Expand 10 after
2089 2091
2090 configs -= [ "//build/config/compiler:chromium_code" ] 2092 configs -= [ "//build/config/compiler:chromium_code" ]
2091 configs += [ "//build/config/compiler:no_chromium_code" ] 2093 configs += [ "//build/config/compiler:no_chromium_code" ]
2092 configs += [ 2094 configs += [
2093 ":internal_config", 2095 ":internal_config",
2094 ":libplatform_config", 2096 ":libplatform_config",
2095 ":features", 2097 ":features",
2096 ":toolchain", 2098 ":toolchain",
2097 ] 2099 ]
2098 } 2100 }
OLDNEW
« no previous file with comments | « no previous file | src/regexp/jsregexp.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698