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

Side by Side Diff: BUILD.gn

Issue 1369123002: [Interpreter] Add interpreter support for compare ops and ToBoolean. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Incorporate review feedback from mstarzinger and rmcilroy. Created 5 years, 2 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/compiler/bytecode-graph-builder.cc » ('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 # 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 1138 matching lines...) Expand 10 before | Expand all | Expand 10 after
1149 "src/runtime/runtime-collections.cc", 1149 "src/runtime/runtime-collections.cc",
1150 "src/runtime/runtime-compiler.cc", 1150 "src/runtime/runtime-compiler.cc",
1151 "src/runtime/runtime-date.cc", 1151 "src/runtime/runtime-date.cc",
1152 "src/runtime/runtime-debug.cc", 1152 "src/runtime/runtime-debug.cc",
1153 "src/runtime/runtime-forin.cc", 1153 "src/runtime/runtime-forin.cc",
1154 "src/runtime/runtime-function.cc", 1154 "src/runtime/runtime-function.cc",
1155 "src/runtime/runtime-futex.cc", 1155 "src/runtime/runtime-futex.cc",
1156 "src/runtime/runtime-generator.cc", 1156 "src/runtime/runtime-generator.cc",
1157 "src/runtime/runtime-i18n.cc", 1157 "src/runtime/runtime-i18n.cc",
1158 "src/runtime/runtime-internal.cc", 1158 "src/runtime/runtime-internal.cc",
1159 "src/runtime/runtime-interpreter.cc",
1159 "src/runtime/runtime-json.cc", 1160 "src/runtime/runtime-json.cc",
1160 "src/runtime/runtime-literals.cc", 1161 "src/runtime/runtime-literals.cc",
1161 "src/runtime/runtime-liveedit.cc", 1162 "src/runtime/runtime-liveedit.cc",
1162 "src/runtime/runtime-maths.cc", 1163 "src/runtime/runtime-maths.cc",
1163 "src/runtime/runtime-numbers.cc", 1164 "src/runtime/runtime-numbers.cc",
1164 "src/runtime/runtime-object.cc", 1165 "src/runtime/runtime-object.cc",
1165 "src/runtime/runtime-observe.cc", 1166 "src/runtime/runtime-observe.cc",
1166 "src/runtime/runtime-operators.cc", 1167 "src/runtime/runtime-operators.cc",
1167 "src/runtime/runtime-proxy.cc", 1168 "src/runtime/runtime-proxy.cc",
1168 "src/runtime/runtime-regexp.cc", 1169 "src/runtime/runtime-regexp.cc",
(...skipping 646 matching lines...) Expand 10 before | Expand all | Expand 10 after
1815 if (!is_component_build) { 1816 if (!is_component_build) {
1816 sources += [ 1817 sources += [
1817 "$target_gen_dir/d8-js.cc", 1818 "$target_gen_dir/d8-js.cc",
1818 ] 1819 ]
1819 } 1820 }
1820 if (v8_enable_i18n_support) { 1821 if (v8_enable_i18n_support) {
1821 deps += [ "//third_party/icu" ] 1822 deps += [ "//third_party/icu" ]
1822 } 1823 }
1823 } 1824 }
1824 } 1825 }
OLDNEW
« no previous file with comments | « no previous file | src/compiler/bytecode-graph-builder.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698