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

Side by Side Diff: BUILD.gn

Issue 1239793002: [interpreter] Add basic framework for bytecode handler code generation. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fix GN for realz Created 5 years, 5 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') | 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 694 matching lines...) Expand 10 before | Expand all | Expand 10 after
705 "src/compiler/graph.cc", 705 "src/compiler/graph.cc",
706 "src/compiler/graph.h", 706 "src/compiler/graph.h",
707 "src/compiler/greedy-allocator.cc", 707 "src/compiler/greedy-allocator.cc",
708 "src/compiler/greedy-allocator.h", 708 "src/compiler/greedy-allocator.h",
709 "src/compiler/instruction-codes.h", 709 "src/compiler/instruction-codes.h",
710 "src/compiler/instruction-selector-impl.h", 710 "src/compiler/instruction-selector-impl.h",
711 "src/compiler/instruction-selector.cc", 711 "src/compiler/instruction-selector.cc",
712 "src/compiler/instruction-selector.h", 712 "src/compiler/instruction-selector.h",
713 "src/compiler/instruction.cc", 713 "src/compiler/instruction.cc",
714 "src/compiler/instruction.h", 714 "src/compiler/instruction.h",
715 "src/compiler/interpreter-assembler.cc",
716 "src/compiler/interpreter-assembler.h",
715 "src/compiler/js-builtin-reducer.cc", 717 "src/compiler/js-builtin-reducer.cc",
716 "src/compiler/js-builtin-reducer.h", 718 "src/compiler/js-builtin-reducer.h",
717 "src/compiler/js-context-relaxation.cc", 719 "src/compiler/js-context-relaxation.cc",
718 "src/compiler/js-context-relaxation.h", 720 "src/compiler/js-context-relaxation.h",
719 "src/compiler/js-context-specialization.cc", 721 "src/compiler/js-context-specialization.cc",
720 "src/compiler/js-context-specialization.h", 722 "src/compiler/js-context-specialization.h",
721 "src/compiler/js-frame-specialization.cc", 723 "src/compiler/js-frame-specialization.cc",
722 "src/compiler/js-frame-specialization.h", 724 "src/compiler/js-frame-specialization.h",
723 "src/compiler/js-generic-lowering.cc", 725 "src/compiler/js-generic-lowering.cc",
724 "src/compiler/js-generic-lowering.h", 726 "src/compiler/js-generic-lowering.h",
(...skipping 263 matching lines...) Expand 10 before | Expand all | Expand 10 after
988 "src/ic/ic.cc", 990 "src/ic/ic.cc",
989 "src/ic/ic.h", 991 "src/ic/ic.h",
990 "src/ic/ic-compiler.cc", 992 "src/ic/ic-compiler.cc",
991 "src/ic/ic-compiler.h", 993 "src/ic/ic-compiler.h",
992 "src/ic/stub-cache.cc", 994 "src/ic/stub-cache.cc",
993 "src/ic/stub-cache.h", 995 "src/ic/stub-cache.h",
994 "src/interface-descriptors.cc", 996 "src/interface-descriptors.cc",
995 "src/interface-descriptors.h", 997 "src/interface-descriptors.h",
996 "src/interpreter-irregexp.cc", 998 "src/interpreter-irregexp.cc",
997 "src/interpreter-irregexp.h", 999 "src/interpreter-irregexp.h",
1000 "src/interpreter/bytecodes.cc",
1001 "src/interpreter/bytecodes.h",
1002 "src/interpreter/interpreter.cc",
1003 "src/interpreter/interpreter.h",
998 "src/isolate.cc", 1004 "src/isolate.cc",
999 "src/isolate.h", 1005 "src/isolate.h",
1000 "src/json-parser.h", 1006 "src/json-parser.h",
1001 "src/json-stringifier.h", 1007 "src/json-stringifier.h",
1002 "src/jsregexp-inl.h", 1008 "src/jsregexp-inl.h",
1003 "src/jsregexp.cc", 1009 "src/jsregexp.cc",
1004 "src/jsregexp.h", 1010 "src/jsregexp.h",
1005 "src/layout-descriptor-inl.h", 1011 "src/layout-descriptor-inl.h",
1006 "src/layout-descriptor.cc", 1012 "src/layout-descriptor.cc",
1007 "src/layout-descriptor.h", 1013 "src/layout-descriptor.h",
(...skipping 754 matching lines...) Expand 10 before | Expand all | Expand 10 after
1762 if (!is_component_build) { 1768 if (!is_component_build) {
1763 sources += [ 1769 sources += [
1764 "$target_gen_dir/d8-js.cc", 1770 "$target_gen_dir/d8-js.cc",
1765 ] 1771 ]
1766 } 1772 }
1767 if (v8_enable_i18n_support) { 1773 if (v8_enable_i18n_support) {
1768 deps += [ "//third_party/icu" ] 1774 deps += [ "//third_party/icu" ]
1769 } 1775 }
1770 } 1776 }
1771 } 1777 }
OLDNEW
« no previous file with comments | « no previous file | src/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698