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

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: Incorporate comments by mstarzinger on patchet 10. 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
« no previous file with comments | « no previous file | src/compiler/bytecode-branch-analysis.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 if (is_android) { 10 if (is_android) {
(...skipping 678 matching lines...) Expand 10 before | Expand all | Expand 10 after
689 "src/compiler/all-nodes.cc", 689 "src/compiler/all-nodes.cc",
690 "src/compiler/all-nodes.h", 690 "src/compiler/all-nodes.h",
691 "src/compiler/ast-graph-builder.cc", 691 "src/compiler/ast-graph-builder.cc",
692 "src/compiler/ast-graph-builder.h", 692 "src/compiler/ast-graph-builder.h",
693 "src/compiler/ast-loop-assignment-analyzer.cc", 693 "src/compiler/ast-loop-assignment-analyzer.cc",
694 "src/compiler/ast-loop-assignment-analyzer.h", 694 "src/compiler/ast-loop-assignment-analyzer.h",
695 "src/compiler/basic-block-instrumentor.cc", 695 "src/compiler/basic-block-instrumentor.cc",
696 "src/compiler/basic-block-instrumentor.h", 696 "src/compiler/basic-block-instrumentor.h",
697 "src/compiler/branch-elimination.cc", 697 "src/compiler/branch-elimination.cc",
698 "src/compiler/branch-elimination.h", 698 "src/compiler/branch-elimination.h",
699 "src/compiler/bytecode-branch-analysis.cc",
700 "src/compiler/bytecode-branch-analysis.h",
699 "src/compiler/bytecode-graph-builder.cc", 701 "src/compiler/bytecode-graph-builder.cc",
700 "src/compiler/bytecode-graph-builder.h", 702 "src/compiler/bytecode-graph-builder.h",
701 "src/compiler/change-lowering.cc", 703 "src/compiler/change-lowering.cc",
702 "src/compiler/change-lowering.h", 704 "src/compiler/change-lowering.h",
703 "src/compiler/c-linkage.cc", 705 "src/compiler/c-linkage.cc",
704 "src/compiler/coalesced-live-ranges.cc", 706 "src/compiler/coalesced-live-ranges.cc",
705 "src/compiler/coalesced-live-ranges.h", 707 "src/compiler/coalesced-live-ranges.h",
706 "src/compiler/code-generator-impl.h", 708 "src/compiler/code-generator-impl.h",
707 "src/compiler/code-generator.cc", 709 "src/compiler/code-generator.cc",
708 "src/compiler/code-generator.h", 710 "src/compiler/code-generator.h",
(...skipping 1132 matching lines...) Expand 10 before | Expand all | Expand 10 after
1841 if (!is_component_build) { 1843 if (!is_component_build) {
1842 sources += [ 1844 sources += [
1843 "$target_gen_dir/d8-js.cc", 1845 "$target_gen_dir/d8-js.cc",
1844 ] 1846 ]
1845 } 1847 }
1846 if (v8_enable_i18n_support) { 1848 if (v8_enable_i18n_support) {
1847 deps += [ "//third_party/icu" ] 1849 deps += [ "//third_party/icu" ]
1848 } 1850 }
1849 } 1851 }
1850 } 1852 }
OLDNEW
« no previous file with comments | « no previous file | src/compiler/bytecode-branch-analysis.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698