Fix include rules in cfx_glyphcache.cpp

Skia headers should be included as third_party/skia/foo.h, to pass
checkdeps.

Change-Id: I6b91b2d52a731f2912b35f038452b13899077d4d
Reviewed-on: https://pdfium-review.googlesource.com/c/pdfium/+/116670
Commit-Queue: Lei Zhang <thestig@chromium.org>
Reviewed-by: Tom Sepez <tsepez@chromium.org>
Reviewed-by: Thomas Sepez <tsepez@google.com>
diff --git a/core/fxge/cfx_glyphcache.cpp b/core/fxge/cfx_glyphcache.cpp
index c686f1b..ce2f926 100644
--- a/core/fxge/cfx_glyphcache.cpp
+++ b/core/fxge/cfx_glyphcache.cpp
@@ -27,9 +27,9 @@
 #include "third_party/skia/include/ports/SkFontMgr_empty.h"  // nogncheck
 
 #if BUILDFLAG(IS_WIN)
-#include "include/ports/SkTypeface_win.h"  // nogncheck
+#include "third_party/skia/include/ports/SkTypeface_win.h"  // nogncheck
 #elif BUILDFLAG(IS_APPLE)
-#include "include/ports/SkFontMgr_mac_ct.h"  // nogncheck
+#include "third_party/skia/include/ports/SkFontMgr_mac_ct.h"  // nogncheck
 #endif
 
 #endif