Skip to content

Commit 1d8e1fc

Browse files
committed
fixup! build: add --shared-abseil-cpp configure flag
1 parent 6bb4544 commit 1d8e1fc

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

tools/v8_gypfiles/v8windbg.gyp

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,6 @@
5050
'dependencies': [
5151
'gen_heap_constants',
5252

53-
'abseil.gyp:abseil',
5453
'v8.gyp:generate_bytecode_builtins_list',
5554
'v8.gyp:run_torque',
5655
'v8.gyp:v8_maybe_icu',
@@ -67,6 +66,11 @@
6766
"<(SHARED_INTERMEDIATE_DIR)/torque-generated/instance-types.h",
6867
],
6968
# Enable RTTI //build/config/compiler:rtti
69+
'conditions': [
70+
['node_shared_abseil=="false"', {
71+
'dependencies': ['abseil.gyp:abseil'],
72+
}],
73+
],
7074
'cflags_cc': [ '-frtti' ],
7175
'cflags_cc!': [ '-fno-rtti' ],
7276
'xcode_settings': {
@@ -151,7 +155,6 @@
151155
'<(V8_ROOT)/include',
152156
],
153157
'dependencies': [
154-
'abseil.gyp:abseil',
155158
'v8.gyp:v8_snapshot',
156159
'v8.gyp:v8_libbase',
157160
'v8.gyp:v8_libplatform',
@@ -160,6 +163,11 @@
160163
'v8.gyp:generate_bytecode_builtins_list',
161164
'v8.gyp:run_torque',
162165
],
166+
'conditions': [
167+
['node_shared_abseil=="false"', {
168+
'dependencies': ['abseil.gyp:abseil'],
169+
}],
170+
],
163171
'sources': [
164172
'<!@pymod_do_main(GN-scraper "<(V8_ROOT)/test/mkgrokdump/BUILD.gn" "mkgrokdump.*?sources = ")',
165173
]

0 commit comments

Comments
 (0)