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

Side by Side Diff: BUILD.gn

Issue 1673333004: [Interpreter] Make InterpreterAssembler a subclass of CodeStubAssembler. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Address review comments. Created 4 years, 10 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 | WATCHLISTS » ('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 767 matching lines...) Expand 10 before | Expand all | Expand 10 after
778 "src/compiler/instruction-codes.h", 778 "src/compiler/instruction-codes.h",
779 "src/compiler/instruction-scheduler.cc", 779 "src/compiler/instruction-scheduler.cc",
780 "src/compiler/instruction-scheduler.h", 780 "src/compiler/instruction-scheduler.h",
781 "src/compiler/instruction-selector-impl.h", 781 "src/compiler/instruction-selector-impl.h",
782 "src/compiler/instruction-selector.cc", 782 "src/compiler/instruction-selector.cc",
783 "src/compiler/instruction-selector.h", 783 "src/compiler/instruction-selector.h",
784 "src/compiler/instruction.cc", 784 "src/compiler/instruction.cc",
785 "src/compiler/instruction.h", 785 "src/compiler/instruction.h",
786 "src/compiler/int64-lowering.cc", 786 "src/compiler/int64-lowering.cc",
787 "src/compiler/int64-lowering.h", 787 "src/compiler/int64-lowering.h",
788 "src/compiler/interpreter-assembler.cc",
789 "src/compiler/interpreter-assembler.h",
790 "src/compiler/js-builtin-reducer.cc", 788 "src/compiler/js-builtin-reducer.cc",
791 "src/compiler/js-builtin-reducer.h", 789 "src/compiler/js-builtin-reducer.h",
792 "src/compiler/js-call-reducer.cc", 790 "src/compiler/js-call-reducer.cc",
793 "src/compiler/js-call-reducer.h", 791 "src/compiler/js-call-reducer.h",
794 "src/compiler/js-context-relaxation.cc", 792 "src/compiler/js-context-relaxation.cc",
795 "src/compiler/js-context-relaxation.h", 793 "src/compiler/js-context-relaxation.h",
796 "src/compiler/js-context-specialization.cc", 794 "src/compiler/js-context-specialization.cc",
797 "src/compiler/js-context-specialization.h", 795 "src/compiler/js-context-specialization.h",
798 "src/compiler/js-create-lowering.cc", 796 "src/compiler/js-create-lowering.cc",
799 "src/compiler/js-create-lowering.h", 797 "src/compiler/js-create-lowering.h",
(...skipping 316 matching lines...) Expand 10 before | Expand all | Expand 10 after
1116 "src/interpreter/bytecode-register-allocator.h", 1114 "src/interpreter/bytecode-register-allocator.h",
1117 "src/interpreter/bytecode-traits.h", 1115 "src/interpreter/bytecode-traits.h",
1118 "src/interpreter/constant-array-builder.cc", 1116 "src/interpreter/constant-array-builder.cc",
1119 "src/interpreter/constant-array-builder.h", 1117 "src/interpreter/constant-array-builder.h",
1120 "src/interpreter/control-flow-builders.cc", 1118 "src/interpreter/control-flow-builders.cc",
1121 "src/interpreter/control-flow-builders.h", 1119 "src/interpreter/control-flow-builders.h",
1122 "src/interpreter/handler-table-builder.cc", 1120 "src/interpreter/handler-table-builder.cc",
1123 "src/interpreter/handler-table-builder.h", 1121 "src/interpreter/handler-table-builder.h",
1124 "src/interpreter/interpreter.cc", 1122 "src/interpreter/interpreter.cc",
1125 "src/interpreter/interpreter.h", 1123 "src/interpreter/interpreter.h",
1124 "src/interpreter/interpreter-assembler.cc",
1125 "src/interpreter/interpreter-assembler.h",
1126 "src/interpreter/register-translator.cc", 1126 "src/interpreter/register-translator.cc",
1127 "src/interpreter/register-translator.h", 1127 "src/interpreter/register-translator.h",
1128 "src/interpreter/source-position-table.cc", 1128 "src/interpreter/source-position-table.cc",
1129 "src/interpreter/source-position-table.h", 1129 "src/interpreter/source-position-table.h",
1130 "src/isolate-inl.h", 1130 "src/isolate-inl.h",
1131 "src/isolate.cc", 1131 "src/isolate.cc",
1132 "src/isolate.h", 1132 "src/isolate.h",
1133 "src/json-parser.h", 1133 "src/json-parser.h",
1134 "src/json-stringifier.h", 1134 "src/json-stringifier.h",
1135 "src/key-accumulator.h", 1135 "src/key-accumulator.h",
(...skipping 852 matching lines...) Expand 10 before | Expand all | Expand 10 after
1988 ] 1988 ]
1989 1989
1990 configs -= [ "//build/config/compiler:chromium_code" ] 1990 configs -= [ "//build/config/compiler:chromium_code" ]
1991 configs += [ "//build/config/compiler:no_chromium_code" ] 1991 configs += [ "//build/config/compiler:no_chromium_code" ]
1992 configs += [ 1992 configs += [
1993 ":internal_config", 1993 ":internal_config",
1994 ":features", 1994 ":features",
1995 ":toolchain", 1995 ":toolchain",
1996 ] 1996 ]
1997 } 1997 }
OLDNEW
« no previous file with comments | « no previous file | WATCHLISTS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698