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

Side by Side Diff: BUILD.gn

Issue 2733203002: FunctionEntryHook: require no-snapshot build (Closed)
Patch Set: fix nit Created 3 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 | include/v8.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/dcheck_always_on.gni") 7 import("//build/config/dcheck_always_on.gni")
8 import("//build/config/mips.gni") 8 import("//build/config/mips.gni")
9 import("//build/config/sanitizers/sanitizers.gni") 9 import("//build/config/sanitizers/sanitizers.gni")
10 10
(...skipping 221 matching lines...) Expand 10 before | Expand all | Expand 10 after
232 } 232 }
233 if (v8_imminent_deprecation_warnings) { 233 if (v8_imminent_deprecation_warnings) {
234 defines += [ "V8_IMMINENT_DEPRECATION_WARNINGS" ] 234 defines += [ "V8_IMMINENT_DEPRECATION_WARNINGS" ]
235 } 235 }
236 if (v8_enable_i18n_support) { 236 if (v8_enable_i18n_support) {
237 defines += [ "V8_I18N_SUPPORT" ] 237 defines += [ "V8_I18N_SUPPORT" ]
238 } 238 }
239 if (v8_enable_handle_zapping) { 239 if (v8_enable_handle_zapping) {
240 defines += [ "ENABLE_HANDLE_ZAPPING" ] 240 defines += [ "ENABLE_HANDLE_ZAPPING" ]
241 } 241 }
242 if (v8_use_snapshot) {
243 defines += [ "V8_USE_SNAPSHOT" ]
244 }
242 if (v8_use_external_startup_data) { 245 if (v8_use_external_startup_data) {
243 defines += [ "V8_USE_EXTERNAL_STARTUP_DATA" ] 246 defines += [ "V8_USE_EXTERNAL_STARTUP_DATA" ]
244 } 247 }
245 } 248 }
246 249
247 config("toolchain") { 250 config("toolchain") {
248 visibility = [ ":*" ] # Only targets in this file can depend on this. 251 visibility = [ ":*" ] # Only targets in this file can depend on this.
249 252
250 defines = [] 253 defines = []
251 cflags = [] 254 cflags = []
(...skipping 2875 matching lines...) Expand 10 before | Expand all | Expand 10 after
3127 ] 3130 ]
3128 3131
3129 configs = [ 3132 configs = [
3130 ":external_config", 3133 ":external_config",
3131 ":internal_config_base", 3134 ":internal_config_base",
3132 ] 3135 ]
3133 } 3136 }
3134 3137
3135 v8_fuzzer("wasm_compile_fuzzer") { 3138 v8_fuzzer("wasm_compile_fuzzer") {
3136 } 3139 }
OLDNEW
« no previous file with comments | « no previous file | include/v8.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698