Created
December 19, 2024 14:51
-
-
Save erikcorry/05dcf38ef52cd4f56895496abe850775 to your computer and use it in GitHub Desktop.
args.gn to repro test failure
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
clang_version = "20" | |
use_rtti = true | |
use_sysroot = false | |
v8_enable_pointer_compression_shared_cage = false | |
v8_enable_external_code_space = false | |
cppgc_enable_caged_heap = false | |
icu_use_data_file = false | |
# These are defines only relevant to Chromium not V8, no need to have them here. | |
use_aura = false | |
use_blink = false | |
use_dbus = false | |
use_ozone = false | |
use_udev = false | |
use_glib = false | |
v8_wasm_random_fuzzers = false | |
v8_enable_lazy_source_positions = false | |
v8_enable_maglev_graph_printer = false | |
v8_use_external_startup_data = false | |
v8_use_perfetto = true | |
use_dwarf5 = true | |
clang_use_chrome_plugins = false | |
is_debug = true | |
v8_enable_backtrace = true | |
v8_enable_slow_dchecks = true | |
target_cpu = "x64" | |
# disable debug fission: We don't include dwo files in the cache entry, so we'd miss out on debug info beyond -g1 otherwise. | |
use_debug_fission = false | |
# Enable ccache if you have that. | |
cc_wrapper = "ccache" | |
# v8_enable_local_handle_zapping = false | |
# v8_enable_global_handle_zapping = true |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment