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

Side by Side Diff: BUILD.gn

Issue 1607433005: [interpreter] Implement exception handler table building. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Added moar tests. 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
« 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 if (is_android) { 10 if (is_android) {
(...skipping 1086 matching lines...) Expand 10 before | Expand all | Expand 10 after
1097 "src/interpreter/bytecode-array-iterator.h", 1097 "src/interpreter/bytecode-array-iterator.h",
1098 "src/interpreter/bytecode-generator.cc", 1098 "src/interpreter/bytecode-generator.cc",
1099 "src/interpreter/bytecode-generator.h", 1099 "src/interpreter/bytecode-generator.h",
1100 "src/interpreter/bytecode-register-allocator.cc", 1100 "src/interpreter/bytecode-register-allocator.cc",
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",
1108 "src/interpreter/handler-table-builder.h",
1107 "src/interpreter/interpreter.cc", 1109 "src/interpreter/interpreter.cc",
1108 "src/interpreter/interpreter.h", 1110 "src/interpreter/interpreter.h",
1109 "src/isolate-inl.h", 1111 "src/isolate-inl.h",
1110 "src/isolate.cc", 1112 "src/isolate.cc",
1111 "src/isolate.h", 1113 "src/isolate.h",
1112 "src/json-stringifier.h", 1114 "src/json-stringifier.h",
1113 "src/key-accumulator.h", 1115 "src/key-accumulator.h",
1114 "src/key-accumulator.cc", 1116 "src/key-accumulator.cc",
1115 "src/layout-descriptor-inl.h", 1117 "src/layout-descriptor-inl.h",
1116 "src/layout-descriptor.cc", 1118 "src/layout-descriptor.cc",
(...skipping 782 matching lines...) Expand 10 before | Expand all | Expand 10 after
1899 if (!is_component_build) { 1901 if (!is_component_build) {
1900 sources += [ 1902 sources += [
1901 "$target_gen_dir/d8-js.cc", 1903 "$target_gen_dir/d8-js.cc",
1902 ] 1904 ]
1903 } 1905 }
1904 if (v8_enable_i18n_support) { 1906 if (v8_enable_i18n_support) {
1905 deps += [ "//third_party/icu" ] 1907 deps += [ "//third_party/icu" ]
1906 } 1908 }
1907 } 1909 }
1908 } 1910 }
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