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

Side by Side Diff: BUILD.gn

Issue 1502243002: [Interpreter] Local flow control in the bytecode graph builder. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Build fix. Created 5 years 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
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 675 matching lines...) Expand 10 before | Expand all | Expand 10 after
686 "src/compiler/all-nodes.cc", 686 "src/compiler/all-nodes.cc",
687 "src/compiler/all-nodes.h", 687 "src/compiler/all-nodes.h",
688 "src/compiler/ast-graph-builder.cc", 688 "src/compiler/ast-graph-builder.cc",
689 "src/compiler/ast-graph-builder.h", 689 "src/compiler/ast-graph-builder.h",
690 "src/compiler/ast-loop-assignment-analyzer.cc", 690 "src/compiler/ast-loop-assignment-analyzer.cc",
691 "src/compiler/ast-loop-assignment-analyzer.h", 691 "src/compiler/ast-loop-assignment-analyzer.h",
692 "src/compiler/basic-block-instrumentor.cc", 692 "src/compiler/basic-block-instrumentor.cc",
693 "src/compiler/basic-block-instrumentor.h", 693 "src/compiler/basic-block-instrumentor.h",
694 "src/compiler/branch-elimination.cc", 694 "src/compiler/branch-elimination.cc",
695 "src/compiler/branch-elimination.h", 695 "src/compiler/branch-elimination.h",
696 "src/compiler/bytecode-basic-block-analysis.cc",
697 "src/compiler/bytecode-basic-block-analysis.h",
696 "src/compiler/bytecode-graph-builder.cc", 698 "src/compiler/bytecode-graph-builder.cc",
697 "src/compiler/bytecode-graph-builder.h", 699 "src/compiler/bytecode-graph-builder.h",
698 "src/compiler/change-lowering.cc", 700 "src/compiler/change-lowering.cc",
699 "src/compiler/change-lowering.h", 701 "src/compiler/change-lowering.h",
700 "src/compiler/c-linkage.cc", 702 "src/compiler/c-linkage.cc",
701 "src/compiler/coalesced-live-ranges.cc", 703 "src/compiler/coalesced-live-ranges.cc",
702 "src/compiler/coalesced-live-ranges.h", 704 "src/compiler/coalesced-live-ranges.h",
703 "src/compiler/code-generator-impl.h", 705 "src/compiler/code-generator-impl.h",
704 "src/compiler/code-generator.cc", 706 "src/compiler/code-generator.cc",
705 "src/compiler/code-generator.h", 707 "src/compiler/code-generator.h",
(...skipping 1130 matching lines...) Expand 10 before | Expand all | Expand 10 after
1836 if (!is_component_build) { 1838 if (!is_component_build) {
1837 sources += [ 1839 sources += [
1838 "$target_gen_dir/d8-js.cc", 1840 "$target_gen_dir/d8-js.cc",
1839 ] 1841 ]
1840 } 1842 }
1841 if (v8_enable_i18n_support) { 1843 if (v8_enable_i18n_support) {
1842 deps += [ "//third_party/icu" ] 1844 deps += [ "//third_party/icu" ]
1843 } 1845 }
1844 } 1846 }
1845 } 1847 }
OLDNEW
« no previous file with comments | « no previous file | src/compiler/bytecode-basic-block-analysis.h » ('j') | src/compiler/bytecode-basic-block-analysis.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698