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

Side by Side Diff: BUILD.gn

Issue 1291693004: [Interpreter] Bytecode graph builder (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fixes/progress from rmcilroy to enable turbofan to process graphs from bytecode. Created 5 years, 3 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
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 692 matching lines...) Expand 10 before | Expand all | Expand 10 after
703 "src/compiler/access-builder.cc", 703 "src/compiler/access-builder.cc",
704 "src/compiler/access-builder.h", 704 "src/compiler/access-builder.h",
705 "src/compiler/all-nodes.cc", 705 "src/compiler/all-nodes.cc",
706 "src/compiler/all-nodes.h", 706 "src/compiler/all-nodes.h",
707 "src/compiler/ast-graph-builder.cc", 707 "src/compiler/ast-graph-builder.cc",
708 "src/compiler/ast-graph-builder.h", 708 "src/compiler/ast-graph-builder.h",
709 "src/compiler/ast-loop-assignment-analyzer.cc", 709 "src/compiler/ast-loop-assignment-analyzer.cc",
710 "src/compiler/ast-loop-assignment-analyzer.h", 710 "src/compiler/ast-loop-assignment-analyzer.h",
711 "src/compiler/basic-block-instrumentor.cc", 711 "src/compiler/basic-block-instrumentor.cc",
712 "src/compiler/basic-block-instrumentor.h", 712 "src/compiler/basic-block-instrumentor.h",
713 "src/compiler/bytecode-graph-builder.cc",
714 "src/compiler/bytecode-graph-builder.h",
713 "src/compiler/change-lowering.cc", 715 "src/compiler/change-lowering.cc",
714 "src/compiler/change-lowering.h", 716 "src/compiler/change-lowering.h",
715 "src/compiler/c-linkage.cc", 717 "src/compiler/c-linkage.cc",
716 "src/compiler/coalesced-live-ranges.cc", 718 "src/compiler/coalesced-live-ranges.cc",
717 "src/compiler/coalesced-live-ranges.h", 719 "src/compiler/coalesced-live-ranges.h",
718 "src/compiler/code-generator-impl.h", 720 "src/compiler/code-generator-impl.h",
719 "src/compiler/code-generator.cc", 721 "src/compiler/code-generator.cc",
720 "src/compiler/code-generator.h", 722 "src/compiler/code-generator.h",
721 "src/compiler/common-node-cache.cc", 723 "src/compiler/common-node-cache.cc",
722 "src/compiler/common-node-cache.h", 724 "src/compiler/common-node-cache.h",
(...skipping 1115 matching lines...) Expand 10 before | Expand all | Expand 10 after
1838 if (!is_component_build) { 1840 if (!is_component_build) {
1839 sources += [ 1841 sources += [
1840 "$target_gen_dir/d8-js.cc", 1842 "$target_gen_dir/d8-js.cc",
1841 ] 1843 ]
1842 } 1844 }
1843 if (v8_enable_i18n_support) { 1845 if (v8_enable_i18n_support) {
1844 deps += [ "//third_party/icu" ] 1846 deps += [ "//third_party/icu" ]
1845 } 1847 }
1846 } 1848 }
1847 } 1849 }
OLDNEW
« no previous file with comments | « no previous file | src/compiler/bytecode-graph-builder.h » ('j') | src/compiler/bytecode-graph-builder.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698