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

Side by Side Diff: BUILD.gn

Issue 1250223002: Remove readline support from d8. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 5 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 | Makefile » ('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 8
9 # Because standalone V8 builds are not supported, assume this is part of a 9 # Because standalone V8 builds are not supported, assume this is part of a
10 # Chromium build. 10 # Chromium build.
(...skipping 1733 matching lines...) Expand 10 before | Expand all | Expand 10 after
1744 ":toolchain", 1744 ":toolchain",
1745 ] 1745 ]
1746 1746
1747 deps = [ 1747 deps = [
1748 ":d8_js2c", 1748 ":d8_js2c",
1749 ":v8", 1749 ":v8",
1750 ":v8_libplatform", 1750 ":v8_libplatform",
1751 "//build/config/sanitizers:deps", 1751 "//build/config/sanitizers:deps",
1752 ] 1752 ]
1753 1753
1754 # TODO(jochen): Add support for readline and vtunejit. 1754 # TODO(jochen): Add support for vtunejit.
1755 1755
1756 if (is_posix) { 1756 if (is_posix) {
1757 sources += [ "src/d8-posix.cc" ] 1757 sources += [ "src/d8-posix.cc" ]
1758 } else if (is_win) { 1758 } else if (is_win) {
1759 sources += [ "src/d8-windows.cc" ] 1759 sources += [ "src/d8-windows.cc" ]
1760 } 1760 }
1761 1761
1762 if (!is_component_build) { 1762 if (!is_component_build) {
1763 sources += [ 1763 sources += [
1764 "$target_gen_dir/d8-js.cc", 1764 "$target_gen_dir/d8-js.cc",
1765 ] 1765 ]
1766 } 1766 }
1767 if (v8_enable_i18n_support) { 1767 if (v8_enable_i18n_support) {
1768 deps += [ "//third_party/icu" ] 1768 deps += [ "//third_party/icu" ]
1769 } 1769 }
1770 } 1770 }
1771 } 1771 }
OLDNEW
« no previous file with comments | « no previous file | Makefile » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698