Fix GN checks for is_linux && !is_android.

The two variables are never true at the same time.

Change-Id: I56adbb24c136ee9cd0cf03bbb99f6b17fb222f88
Reviewed-on: https://chromium-review.googlesource.com/1130661
Reviewed-by: Scott Violet <[email protected]>
Commit-Queue: Lei Zhang <[email protected]>
Cr-Commit-Position: refs/heads/master@{#573808}
diff --git a/content/browser/BUILD.gn b/content/browser/BUILD.gn
index 9069b50..efb1ced 100644
--- a/content/browser/BUILD.gn
+++ b/content/browser/BUILD.gn
@@ -2045,7 +2045,7 @@
     if (use_pangocairo) {
       sources += [ "renderer_host/pepper/pepper_truetype_font_list_pango.cc" ]
     }
-    if (is_linux && !is_android) {
+    if (is_linux) {
       deps += [ "//components/services/font:ppapi_fontconfig_matching" ]
     }
   }