From 38d18b0fb9c792fe7e24300c5a1f04a84f18f7c3 Mon Sep 17 00:00:00 2001
From: klzgrad <kizdiv@gmail.com>
Date: Tue, 3 May 2022 01:01:06 +0800
Subject: [PATCH] base: Fix Android build missing -latomic

---
 src/base/BUILD.gn | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/base/BUILD.gn b/src/base/BUILD.gn
index f7151ce013..e1faae1829 100644
--- a/src/base/BUILD.gn
+++ b/src/base/BUILD.gn
@@ -1541,7 +1541,7 @@ component("base") {
   # Needed for <atomic> if using newer C++ library than sysroot, except if
   # building inside the cros_sdk environment - use host_toolchain as a
   # more robust check for this.
-  if (!use_sysroot && (is_android || is_chromeos || (is_linux && !is_castos)) &&
+  if (!use_sysroot && (is_chromeos || (is_linux && !is_castos)) &&
       host_toolchain != "//build/toolchain/cros:host") {
     libs += [ "atomic" ]
   }