Use Chromium's abseil build files when building in ANGLE

Dawn's abseil build files at third_party/gn/abseil-cpp have to stay
because Skia is unable to build with the Chromium GN files.

ANGLE frequently updates abseil to match Chromium's and this often
breaks builds when Dawn's build files cannot work with the new abseil
checkout.

Add a new build_with_angle variable to know when building in an ANGLE
checkout and use the chromium abseil build files in that situation.

Bug: angleproject:8555
Change-Id: If8209dd9e6c52f86f9fda92d06212a694833abc3
Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/187721
Reviewed-by: Austin Eng <enga@chromium.org>
Commit-Queue: Geoff Lang <geofflang@google.com>
diff --git a/build_overrides/dawn.gni b/build_overrides/dawn.gni
index 79e3911..4c5bff0 100644
--- a/build_overrides/dawn.gni
+++ b/build_overrides/dawn.gni
@@ -36,6 +36,9 @@
 # True if Dawn can access build/, testing/ and other Chrome folders.
 dawn_has_build = true
 
+# True if building within an ANGLE checkout
+build_with_angle = false
+
 # Defaults for these are set again in dawn_overrides_with_defaults.gni so that
 # users of Dawn don't have to set dirs if they happen to use the same as Dawn.