Glad to hear you were able to get it working!
This page has tips on configuring Chromium builds:
Autoninja always builds incrementally, but a change in a widely-used dependency may trigger building a lot more than you would expect. Also, linking must be done every time; adding RAM and using an SSD should speed this up a lot.
A smarter way to reduce linking cost is to use component builds. These are the default in debug mode.
Debug builds are less optimized, and have a lot of extra sanity checks that cost performance. (Debug symbols generally don't affect run time performance.)
Check the page about configuring the GN build for more tips. Note that whenever you change the GN configuration, you usually have to compile everything from scratch again.