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

Side by Side Diff: BUILD.gn

Issue 1613163002: [interpreter] Wide register support. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Compilation fixes for gcc/msvc. Created 4 years, 11 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 import("//build/config/sanitizers/sanitizers.gni") 8 import("//build/config/sanitizers/sanitizers.gni")
9 9
10 if (is_android) { 10 if (is_android) {
(...skipping 1090 matching lines...) Expand 10 before | Expand all | Expand 10 after
1101 "src/interpreter/bytecode-register-allocator.h", 1101 "src/interpreter/bytecode-register-allocator.h",
1102 "src/interpreter/bytecode-traits.h", 1102 "src/interpreter/bytecode-traits.h",
1103 "src/interpreter/constant-array-builder.cc", 1103 "src/interpreter/constant-array-builder.cc",
1104 "src/interpreter/constant-array-builder.h", 1104 "src/interpreter/constant-array-builder.h",
1105 "src/interpreter/control-flow-builders.cc", 1105 "src/interpreter/control-flow-builders.cc",
1106 "src/interpreter/control-flow-builders.h", 1106 "src/interpreter/control-flow-builders.h",
1107 "src/interpreter/handler-table-builder.cc", 1107 "src/interpreter/handler-table-builder.cc",
1108 "src/interpreter/handler-table-builder.h", 1108 "src/interpreter/handler-table-builder.h",
1109 "src/interpreter/interpreter.cc", 1109 "src/interpreter/interpreter.cc",
1110 "src/interpreter/interpreter.h", 1110 "src/interpreter/interpreter.h",
1111 "src/interpreter/register-translator.cc",
1112 "src/interpreter/register-translator.h",
1111 "src/isolate-inl.h", 1113 "src/isolate-inl.h",
1112 "src/isolate.cc", 1114 "src/isolate.cc",
1113 "src/isolate.h", 1115 "src/isolate.h",
1114 "src/json-stringifier.h", 1116 "src/json-stringifier.h",
1115 "src/key-accumulator.h", 1117 "src/key-accumulator.h",
1116 "src/key-accumulator.cc", 1118 "src/key-accumulator.cc",
1117 "src/layout-descriptor-inl.h", 1119 "src/layout-descriptor-inl.h",
1118 "src/layout-descriptor.cc", 1120 "src/layout-descriptor.cc",
1119 "src/layout-descriptor.h", 1121 "src/layout-descriptor.h",
1120 "src/list-inl.h", 1122 "src/list-inl.h",
(...skipping 782 matching lines...) Expand 10 before | Expand all | Expand 10 after
1903 if (!is_component_build) { 1905 if (!is_component_build) {
1904 sources += [ 1906 sources += [
1905 "$target_gen_dir/d8-js.cc", 1907 "$target_gen_dir/d8-js.cc",
1906 ] 1908 ]
1907 } 1909 }
1908 if (v8_enable_i18n_support) { 1910 if (v8_enable_i18n_support) {
1909 deps += [ "//third_party/icu" ] 1911 deps += [ "//third_party/icu" ]
1910 } 1912 }
1911 } 1913 }
1912 } 1914 }
OLDNEW
« no previous file with comments | « no previous file | src/interpreter/bytecode-array-builder.h » ('j') | src/interpreter/bytecode-array-builder.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698