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

Side by Side Diff: BUILD.gn

Issue 1333843002: [runtime] Move binary operator fallbacks into the runtime. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: No need for frame states in bytecode handlers. Add test case. 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/accessors.cc » ('j') | src/compiler/linkage.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 1151 matching lines...) Expand 10 before | Expand all | Expand 10 after
1162 "src/runtime/runtime-generator.cc", 1162 "src/runtime/runtime-generator.cc",
1163 "src/runtime/runtime-i18n.cc", 1163 "src/runtime/runtime-i18n.cc",
1164 "src/runtime/runtime-internal.cc", 1164 "src/runtime/runtime-internal.cc",
1165 "src/runtime/runtime-json.cc", 1165 "src/runtime/runtime-json.cc",
1166 "src/runtime/runtime-literals.cc", 1166 "src/runtime/runtime-literals.cc",
1167 "src/runtime/runtime-liveedit.cc", 1167 "src/runtime/runtime-liveedit.cc",
1168 "src/runtime/runtime-maths.cc", 1168 "src/runtime/runtime-maths.cc",
1169 "src/runtime/runtime-numbers.cc", 1169 "src/runtime/runtime-numbers.cc",
1170 "src/runtime/runtime-object.cc", 1170 "src/runtime/runtime-object.cc",
1171 "src/runtime/runtime-observe.cc", 1171 "src/runtime/runtime-observe.cc",
1172 "src/runtime/runtime-operators.cc",
1172 "src/runtime/runtime-proxy.cc", 1173 "src/runtime/runtime-proxy.cc",
1173 "src/runtime/runtime-regexp.cc", 1174 "src/runtime/runtime-regexp.cc",
1174 "src/runtime/runtime-scopes.cc", 1175 "src/runtime/runtime-scopes.cc",
1175 "src/runtime/runtime-simd.cc", 1176 "src/runtime/runtime-simd.cc",
1176 "src/runtime/runtime-strings.cc", 1177 "src/runtime/runtime-strings.cc",
1177 "src/runtime/runtime-symbol.cc", 1178 "src/runtime/runtime-symbol.cc",
1178 "src/runtime/runtime-test.cc", 1179 "src/runtime/runtime-test.cc",
1179 "src/runtime/runtime-typedarray.cc", 1180 "src/runtime/runtime-typedarray.cc",
1180 "src/runtime/runtime-uri.cc", 1181 "src/runtime/runtime-uri.cc",
1181 "src/runtime/runtime-utils.h", 1182 "src/runtime/runtime-utils.h",
(...skipping 663 matching lines...) Expand 10 before | Expand all | Expand 10 after
1845 if (!is_component_build) { 1846 if (!is_component_build) {
1846 sources += [ 1847 sources += [
1847 "$target_gen_dir/d8-js.cc", 1848 "$target_gen_dir/d8-js.cc",
1848 ] 1849 ]
1849 } 1850 }
1850 if (v8_enable_i18n_support) { 1851 if (v8_enable_i18n_support) {
1851 deps += [ "//third_party/icu" ] 1852 deps += [ "//third_party/icu" ]
1852 } 1853 }
1853 } 1854 }
1854 } 1855 }
OLDNEW
« no previous file with comments | « no previous file | src/accessors.cc » ('j') | src/compiler/linkage.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698