Skip to content

Commit 049b703

Browse files
committed
build: sync generation of v8_build_config.json
The contents of the `v8_build_config.json` file generated when configured with `--enable-d8` is missing entries which prevent V8's test runner from using the built `d8` binary. Sync the keys written into the file with those generated in V8's `deps/v8/BUILD.gn` file. PR-URL: #38263 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com>
1 parent c704faa commit 049b703

File tree

1 file changed

+13
-2
lines changed

1 file changed

+13
-2
lines changed

tools/v8_gypfiles/v8.gyp

+13-2
Original file line numberDiff line numberDiff line change
@@ -1509,6 +1509,7 @@
15091509
'variables': {
15101510
'v8_dump_build_config_args': [
15111511
'<(PRODUCT_DIR)/v8_build_config.json',
1512+
'current_cpu=<(v8_current_cpu)',
15121513
'dcheck_always_on=<(dcheck_always_on)',
15131514
'is_android=<(is_android)',
15141515
'is_asan=<(asan)',
@@ -1517,20 +1518,30 @@
15171518
'is_component_build=<(component)',
15181519
'is_debug=<(CONFIGURATION_NAME)',
15191520
# Not available in gyp.
1521+
'is_full_debug=0',
1522+
# Not available in gyp.
15201523
'is_gcov_coverage=0',
15211524
'is_msan=<(msan)',
15221525
'is_tsan=<(tsan)',
15231526
# Not available in gyp.
15241527
'is_ubsan_vptr=0',
15251528
'target_cpu=<(target_arch)',
1529+
'v8_current_cpu=<(v8_current_cpu)',
1530+
# Not available in gyp.
1531+
'v8_enable_atomic_marking_state=0',
1532+
# Not available in gyp.
1533+
'v8_enable_atomic_object_field_writes=0',
1534+
# Not available in gyp.
1535+
'v8_enable_concurrent_marking=0',
15261536
'v8_enable_i18n_support=<(v8_enable_i18n_support)',
15271537
'v8_enable_verify_predictable=<(v8_enable_verify_predictable)',
1528-
'v8_target_cpu=<(v8_target_arch)',
1529-
'v8_use_siphash=<(v8_use_siphash)',
15301538
'v8_enable_verify_csa=<(v8_enable_verify_csa)',
15311539
'v8_enable_lite_mode=<(v8_enable_lite_mode)',
15321540
'v8_enable_pointer_compression=<(v8_enable_pointer_compression)',
15331541
'v8_enable_webassembly=<(v8_enable_webassembly)',
1542+
# Not available in gyp.
1543+
'v8_control_flow_integrity=0',
1544+
'v8_target_cpu=<(v8_target_arch)',
15341545
]
15351546
},
15361547
'conditions': [

0 commit comments

Comments
 (0)