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

Side by Side Diff: BUILD.gn

Issue 1305393003: [turbofan] Deferred blocks splintering. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 4 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/bit-vector.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 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 725 matching lines...) Expand 10 before | Expand all | Expand 10 after
736 "src/compiler/js-type-feedback.cc", 736 "src/compiler/js-type-feedback.cc",
737 "src/compiler/js-type-feedback.h", 737 "src/compiler/js-type-feedback.h",
738 "src/compiler/js-type-feedback-lowering.cc", 738 "src/compiler/js-type-feedback-lowering.cc",
739 "src/compiler/js-type-feedback-lowering.h", 739 "src/compiler/js-type-feedback-lowering.h",
740 "src/compiler/js-typed-lowering.cc", 740 "src/compiler/js-typed-lowering.cc",
741 "src/compiler/js-typed-lowering.h", 741 "src/compiler/js-typed-lowering.h",
742 "src/compiler/jump-threading.cc", 742 "src/compiler/jump-threading.cc",
743 "src/compiler/jump-threading.h", 743 "src/compiler/jump-threading.h",
744 "src/compiler/linkage.cc", 744 "src/compiler/linkage.cc",
745 "src/compiler/linkage.h", 745 "src/compiler/linkage.h",
746 "src/compiler/live-range-separator.cc",
747 "src/compiler/live-range-separator.h",
746 "src/compiler/liveness-analyzer.cc", 748 "src/compiler/liveness-analyzer.cc",
747 "src/compiler/liveness-analyzer.h", 749 "src/compiler/liveness-analyzer.h",
748 "src/compiler/load-elimination.cc", 750 "src/compiler/load-elimination.cc",
749 "src/compiler/load-elimination.h", 751 "src/compiler/load-elimination.h",
750 "src/compiler/loop-peeling.cc", 752 "src/compiler/loop-peeling.cc",
751 "src/compiler/loop-analysis.cc", 753 "src/compiler/loop-analysis.cc",
752 "src/compiler/loop-analysis.h", 754 "src/compiler/loop-analysis.h",
753 "src/compiler/machine-operator-reducer.cc", 755 "src/compiler/machine-operator-reducer.cc",
754 "src/compiler/machine-operator-reducer.h", 756 "src/compiler/machine-operator-reducer.h",
755 "src/compiler/machine-operator.cc", 757 "src/compiler/machine-operator.cc",
(...skipping 18 matching lines...) Expand all
774 "src/compiler/operator-properties.cc", 776 "src/compiler/operator-properties.cc",
775 "src/compiler/operator-properties.h", 777 "src/compiler/operator-properties.h",
776 "src/compiler/operator.cc", 778 "src/compiler/operator.cc",
777 "src/compiler/operator.h", 779 "src/compiler/operator.h",
778 "src/compiler/osr.cc", 780 "src/compiler/osr.cc",
779 "src/compiler/osr.h", 781 "src/compiler/osr.h",
780 "src/compiler/pipeline.cc", 782 "src/compiler/pipeline.cc",
781 "src/compiler/pipeline.h", 783 "src/compiler/pipeline.h",
782 "src/compiler/pipeline-statistics.cc", 784 "src/compiler/pipeline-statistics.cc",
783 "src/compiler/pipeline-statistics.h", 785 "src/compiler/pipeline-statistics.h",
784 "src/compiler/preprocess-live-ranges.cc",
785 "src/compiler/preprocess-live-ranges.h",
786 "src/compiler/raw-machine-assembler.cc", 786 "src/compiler/raw-machine-assembler.cc",
787 "src/compiler/raw-machine-assembler.h", 787 "src/compiler/raw-machine-assembler.h",
788 "src/compiler/register-allocator.cc", 788 "src/compiler/register-allocator.cc",
789 "src/compiler/register-allocator.h", 789 "src/compiler/register-allocator.h",
790 "src/compiler/register-allocator-verifier.cc", 790 "src/compiler/register-allocator-verifier.cc",
791 "src/compiler/register-allocator-verifier.h", 791 "src/compiler/register-allocator-verifier.h",
792 "src/compiler/register-configuration.cc", 792 "src/compiler/register-configuration.cc",
793 "src/compiler/register-configuration.h", 793 "src/compiler/register-configuration.h",
794 "src/compiler/representation-change.h", 794 "src/compiler/representation-change.h",
795 "src/compiler/schedule.cc", 795 "src/compiler/schedule.cc",
(...skipping 982 matching lines...) Expand 10 before | Expand all | Expand 10 after
1778 if (!is_component_build) { 1778 if (!is_component_build) {
1779 sources += [ 1779 sources += [
1780 "$target_gen_dir/d8-js.cc", 1780 "$target_gen_dir/d8-js.cc",
1781 ] 1781 ]
1782 } 1782 }
1783 if (v8_enable_i18n_support) { 1783 if (v8_enable_i18n_support) {
1784 deps += [ "//third_party/icu" ] 1784 deps += [ "//third_party/icu" ]
1785 } 1785 }
1786 } 1786 }
1787 } 1787 }
OLDNEW
« no previous file with comments | « no previous file | src/bit-vector.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698