commit | 0809cfd9b188b46e859af93c9ebd9a1c7721ee5e | [log] [tgz] |
---|---|---|
author | Lei Zhang <[email protected]> | Tue Jul 10 18:05:41 2018 |
committer | Commit Bot <[email protected]> | Tue Jul 10 18:05:41 2018 |
tree | ffe0b56c10506a0fdde9685c91845d57f665c945 | |
parent | fb941e99d9b3330b5cd2e7803704e1bf3f57de64 [diff] [blame] |
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" ] } }