Keith Teo
unread,Dec 12, 2024, 5:36:19 PM12/12/24Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Chromium-dev, Dirk Pranke, Chromium-dev, keithte...@gmail.com
I started everything only a few months ago and downloaded the Chromium repo only a few days ago. I also ran gclient sync. My older GN might be coming from having ran the ./install-build-deps.sh for v8. I used /buildtools/linux64/gn and I do have the function, but now I am running into another build error:
error: no member named 'GetCaptivePortalServerUrl' in namespace 'security_interstitials'
89 | const std::string url = security_interstitials::GetCaptivePortalServerUrl(
| ~~~~~~~~~~~~~~~~~~~~~~~~^
../../chrome/browser/ssl/chrome_security_blocking_page_factory.cc:90:22: error: no member named 'AttachCurrentThread' in namespace 'base::android'
90 | base::android::AttachCurrentThread());
This is my
args.gn file:
is_debug = false
is_component_build = false
symbol_level = 0
enable_nacl = false
blink_symbol_level = 0
v8_symbol_level = 0
is_cfi = false
use_thin_lto = true
treat_warnings_as_errors = false
enable_websockets = false
enable_backup_ref_ptr_support = false
v8_enable_sandbox = false
use_vaapi = false
enable_reading_list = false
enable_captive_portal_detection = false
target_os = "linux"
target_cpu = "x64"
Any idea why this is happening?