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

Side by Side Diff: BUILD.gn

Issue 1391903002: [turbofan] Separate JSInliningHeuristic into own class. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Rebased. Created 5 years, 2 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/compiler/js-inlining.h » ('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 # Because standalone V8 builds are not supported, assume this is part of a 10 # Because standalone V8 builds are not supported, assume this is part of a
(...skipping 743 matching lines...) Expand 10 before | Expand all | Expand 10 after
754 "src/compiler/js-frame-specialization.cc", 754 "src/compiler/js-frame-specialization.cc",
755 "src/compiler/js-frame-specialization.h", 755 "src/compiler/js-frame-specialization.h",
756 "src/compiler/js-generic-lowering.cc", 756 "src/compiler/js-generic-lowering.cc",
757 "src/compiler/js-generic-lowering.h", 757 "src/compiler/js-generic-lowering.h",
758 "src/compiler/js-global-specialization.cc", 758 "src/compiler/js-global-specialization.cc",
759 "src/compiler/js-global-specialization.h", 759 "src/compiler/js-global-specialization.h",
760 "src/compiler/js-graph.cc", 760 "src/compiler/js-graph.cc",
761 "src/compiler/js-graph.h", 761 "src/compiler/js-graph.h",
762 "src/compiler/js-inlining.cc", 762 "src/compiler/js-inlining.cc",
763 "src/compiler/js-inlining.h", 763 "src/compiler/js-inlining.h",
764 "src/compiler/js-inlining-heuristic.cc",
765 "src/compiler/js-inlining-heuristic.h",
764 "src/compiler/js-intrinsic-lowering.cc", 766 "src/compiler/js-intrinsic-lowering.cc",
765 "src/compiler/js-intrinsic-lowering.h", 767 "src/compiler/js-intrinsic-lowering.h",
766 "src/compiler/js-operator.cc", 768 "src/compiler/js-operator.cc",
767 "src/compiler/js-operator.h", 769 "src/compiler/js-operator.h",
768 "src/compiler/js-type-feedback.cc", 770 "src/compiler/js-type-feedback.cc",
769 "src/compiler/js-type-feedback.h", 771 "src/compiler/js-type-feedback.h",
770 "src/compiler/js-type-feedback-lowering.cc", 772 "src/compiler/js-type-feedback-lowering.cc",
771 "src/compiler/js-type-feedback-lowering.h", 773 "src/compiler/js-type-feedback-lowering.h",
772 "src/compiler/js-typed-lowering.cc", 774 "src/compiler/js-typed-lowering.cc",
773 "src/compiler/js-typed-lowering.h", 775 "src/compiler/js-typed-lowering.h",
(...skipping 1046 matching lines...) Expand 10 before | Expand all | Expand 10 after
1820 if (!is_component_build) { 1822 if (!is_component_build) {
1821 sources += [ 1823 sources += [
1822 "$target_gen_dir/d8-js.cc", 1824 "$target_gen_dir/d8-js.cc",
1823 ] 1825 ]
1824 } 1826 }
1825 if (v8_enable_i18n_support) { 1827 if (v8_enable_i18n_support) {
1826 deps += [ "//third_party/icu" ] 1828 deps += [ "//third_party/icu" ]
1827 } 1829 }
1828 } 1830 }
1829 } 1831 }
OLDNEW
« no previous file with comments | « no previous file | src/compiler/js-inlining.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698