I'm building Clank like this:
$ gn args gn_out/release:
target_os = "android"
disable_incremental_isolated_processes=true
is_component_build = true
is_debug = false
use_goma = true
goma_dir = "/ssd1tb/goma"
Confirming that dcheck_always_on is false:
$ gn args gn_out/release --list --short | grep dcheck
dcheck_always_on = false
Building and installing like this:
ninja -C gn_out/release -j 500 chrome_apk_incremental
gn_out/release/bin/install_chrome_apk_incremental
But when I run Chrome I'm getting frequent crashes like this one:
[FATAL:WebFrameContentDumper.cpp(34)] Check failed: !document->needsLayoutTreeUpdate().
...which is a DCHECK:
DCHECK(!document->needsLayoutTreeUpdate());
Any ideas?
Comment 1 by dmazz...@chromium.org
, Oct 28 2016Components: -Blink -Infra Infra>Client>Android
Summary: install_chrome_apk_incremental unreliable (was: Hitting DCHECK assertions in release build when dcheck_always_on = false)