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

Side by Side Diff: BUILD.gn

Issue 1645763003: [Interpreter] TurboFan implementation of intrinsics. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Merged with oth@'s changes. Created 4 years, 9 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/bailout-reason.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 1115 matching lines...) Expand 10 before | Expand all | Expand 10 after
1126 "src/interpreter/constant-array-builder.cc", 1126 "src/interpreter/constant-array-builder.cc",
1127 "src/interpreter/constant-array-builder.h", 1127 "src/interpreter/constant-array-builder.h",
1128 "src/interpreter/control-flow-builders.cc", 1128 "src/interpreter/control-flow-builders.cc",
1129 "src/interpreter/control-flow-builders.h", 1129 "src/interpreter/control-flow-builders.h",
1130 "src/interpreter/handler-table-builder.cc", 1130 "src/interpreter/handler-table-builder.cc",
1131 "src/interpreter/handler-table-builder.h", 1131 "src/interpreter/handler-table-builder.h",
1132 "src/interpreter/interpreter.cc", 1132 "src/interpreter/interpreter.cc",
1133 "src/interpreter/interpreter.h", 1133 "src/interpreter/interpreter.h",
1134 "src/interpreter/interpreter-assembler.cc", 1134 "src/interpreter/interpreter-assembler.cc",
1135 "src/interpreter/interpreter-assembler.h", 1135 "src/interpreter/interpreter-assembler.h",
1136 "src/interpreter/interpreter-intrinsics.cc",
1137 "src/interpreter/interpreter-intrinsics.h",
1136 "src/interpreter/source-position-table.cc", 1138 "src/interpreter/source-position-table.cc",
1137 "src/interpreter/source-position-table.h", 1139 "src/interpreter/source-position-table.h",
1138 "src/isolate-inl.h", 1140 "src/isolate-inl.h",
1139 "src/isolate.cc", 1141 "src/isolate.cc",
1140 "src/isolate.h", 1142 "src/isolate.h",
1141 "src/json-parser.h", 1143 "src/json-parser.h",
1142 "src/json-stringifier.h", 1144 "src/json-stringifier.h",
1143 "src/keys.h", 1145 "src/keys.h",
1144 "src/keys.cc", 1146 "src/keys.cc",
1145 "src/layout-descriptor-inl.h", 1147 "src/layout-descriptor-inl.h",
(...skipping 946 matching lines...) Expand 10 before | Expand all | Expand 10 after
2092 2094
2093 configs -= [ "//build/config/compiler:chromium_code" ] 2095 configs -= [ "//build/config/compiler:chromium_code" ]
2094 configs += [ "//build/config/compiler:no_chromium_code" ] 2096 configs += [ "//build/config/compiler:no_chromium_code" ]
2095 configs += [ 2097 configs += [
2096 ":internal_config", 2098 ":internal_config",
2097 ":libplatform_config", 2099 ":libplatform_config",
2098 ":features", 2100 ":features",
2099 ":toolchain", 2101 ":toolchain",
2100 ] 2102 ]
2101 } 2103 }
OLDNEW
« no previous file with comments | « no previous file | src/bailout-reason.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698