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

Side by Side Diff: BUILD.gn

Issue 1373903005: [Interpreter] Add for/while/do support to the bytecode generator. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Rebase. 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/interpreter/bytecode-array-builder.h » ('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 1033 matching lines...) Expand 10 before | Expand all | Expand 10 after
1044 "src/interface-descriptors.cc", 1044 "src/interface-descriptors.cc",
1045 "src/interface-descriptors.h", 1045 "src/interface-descriptors.h",
1046 "src/interpreter/bytecodes.cc", 1046 "src/interpreter/bytecodes.cc",
1047 "src/interpreter/bytecodes.h", 1047 "src/interpreter/bytecodes.h",
1048 "src/interpreter/bytecode-array-builder.cc", 1048 "src/interpreter/bytecode-array-builder.cc",
1049 "src/interpreter/bytecode-array-builder.h", 1049 "src/interpreter/bytecode-array-builder.h",
1050 "src/interpreter/bytecode-array-iterator.cc", 1050 "src/interpreter/bytecode-array-iterator.cc",
1051 "src/interpreter/bytecode-array-iterator.h", 1051 "src/interpreter/bytecode-array-iterator.h",
1052 "src/interpreter/bytecode-generator.cc", 1052 "src/interpreter/bytecode-generator.cc",
1053 "src/interpreter/bytecode-generator.h", 1053 "src/interpreter/bytecode-generator.h",
1054 "src/interpreter/control-flow-builders.cc",
1055 "src/interpreter/control-flow-builders.h",
1054 "src/interpreter/interpreter.cc", 1056 "src/interpreter/interpreter.cc",
1055 "src/interpreter/interpreter.h", 1057 "src/interpreter/interpreter.h",
1056 "src/isolate-inl.h", 1058 "src/isolate-inl.h",
1057 "src/isolate.cc", 1059 "src/isolate.cc",
1058 "src/isolate.h", 1060 "src/isolate.h",
1059 "src/json-parser.h", 1061 "src/json-parser.h",
1060 "src/json-stringifier.h", 1062 "src/json-stringifier.h",
1061 "src/layout-descriptor-inl.h", 1063 "src/layout-descriptor-inl.h",
1062 "src/layout-descriptor.cc", 1064 "src/layout-descriptor.cc",
1063 "src/layout-descriptor.h", 1065 "src/layout-descriptor.h",
(...skipping 752 matching lines...) Expand 10 before | Expand all | Expand 10 after
1816 if (!is_component_build) { 1818 if (!is_component_build) {
1817 sources += [ 1819 sources += [
1818 "$target_gen_dir/d8-js.cc", 1820 "$target_gen_dir/d8-js.cc",
1819 ] 1821 ]
1820 } 1822 }
1821 if (v8_enable_i18n_support) { 1823 if (v8_enable_i18n_support) {
1822 deps += [ "//third_party/icu" ] 1824 deps += [ "//third_party/icu" ]
1823 } 1825 }
1824 } 1826 }
1825 } 1827 }
OLDNEW
« no previous file with comments | « no previous file | src/interpreter/bytecode-array-builder.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698