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

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: Additional tests with strings and double. 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
« no previous file with comments | « no previous file | src/DEPS » ('j') | src/compiler/bytecode-graph-builder.h » ('J')
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 695 matching lines...) Expand 10 before | Expand all | Expand 10 after
706 "src/compiler/access-builder.cc", 706 "src/compiler/access-builder.cc",
707 "src/compiler/access-builder.h", 707 "src/compiler/access-builder.h",
708 "src/compiler/all-nodes.cc", 708 "src/compiler/all-nodes.cc",
709 "src/compiler/all-nodes.h", 709 "src/compiler/all-nodes.h",
710 "src/compiler/ast-graph-builder.cc", 710 "src/compiler/ast-graph-builder.cc",
711 "src/compiler/ast-graph-builder.h", 711 "src/compiler/ast-graph-builder.h",
712 "src/compiler/ast-loop-assignment-analyzer.cc", 712 "src/compiler/ast-loop-assignment-analyzer.cc",
713 "src/compiler/ast-loop-assignment-analyzer.h", 713 "src/compiler/ast-loop-assignment-analyzer.h",
714 "src/compiler/basic-block-instrumentor.cc", 714 "src/compiler/basic-block-instrumentor.cc",
715 "src/compiler/basic-block-instrumentor.h", 715 "src/compiler/basic-block-instrumentor.h",
716 "src/compiler/bytecode-graph-builder.cc",
717 "src/compiler/bytecode-graph-builder.h",
716 "src/compiler/change-lowering.cc", 718 "src/compiler/change-lowering.cc",
717 "src/compiler/change-lowering.h", 719 "src/compiler/change-lowering.h",
718 "src/compiler/c-linkage.cc", 720 "src/compiler/c-linkage.cc",
719 "src/compiler/coalesced-live-ranges.cc", 721 "src/compiler/coalesced-live-ranges.cc",
720 "src/compiler/coalesced-live-ranges.h", 722 "src/compiler/coalesced-live-ranges.h",
721 "src/compiler/code-generator-impl.h", 723 "src/compiler/code-generator-impl.h",
722 "src/compiler/code-generator.cc", 724 "src/compiler/code-generator.cc",
723 "src/compiler/code-generator.h", 725 "src/compiler/code-generator.h",
724 "src/compiler/common-node-cache.cc", 726 "src/compiler/common-node-cache.cc",
725 "src/compiler/common-node-cache.h", 727 "src/compiler/common-node-cache.h",
(...skipping 1119 matching lines...) Expand 10 before | Expand all | Expand 10 after
1845 if (!is_component_build) { 1847 if (!is_component_build) {
1846 sources += [ 1848 sources += [
1847 "$target_gen_dir/d8-js.cc", 1849 "$target_gen_dir/d8-js.cc",
1848 ] 1850 ]
1849 } 1851 }
1850 if (v8_enable_i18n_support) { 1852 if (v8_enable_i18n_support) {
1851 deps += [ "//third_party/icu" ] 1853 deps += [ "//third_party/icu" ]
1852 } 1854 }
1853 } 1855 }
1854 } 1856 }
OLDNEW
« no previous file with comments | « no previous file | src/DEPS » ('j') | src/compiler/bytecode-graph-builder.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698