0

Update build of Skia macOS font manager.

Skia is moving the code about to make it easier to manage. There should
be no functional changes.

Change-Id: I4f7284fa278638ad05f1fd4772a0abc12ddd4f83
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2232883
Reviewed-by: Mike Klein <mtklein@google.com>
Commit-Queue: Ben Wagner <bungeman@chromium.org>
Cr-Commit-Position: refs/heads/master@{#776099}
This commit is contained in:
Ben Wagner
2020-06-08 17:35:37 +00:00
committed by Commit Bot
parent 16164c8640
commit b92094cebb

@ -433,8 +433,13 @@ component("skia") {
if (is_mac || is_ios) {
set_sources_assignment_filter([])
sources += [
"//third_party/skia/src/ports/SkFontHost_mac.cpp",
"//third_party/skia/src/utils/mac/SkStream_mac.cpp",
"//third_party/skia/include/ports/SkFontMgr_mac_ct.h",
"//third_party/skia/src/ports/SkFontMgr_mac_ct.cpp",
"//third_party/skia/src/ports/SkFontMgr_mac_ct_factory.cpp",
"//third_party/skia/src/ports/SkScalerContext_mac_ct.cpp",
"//third_party/skia/src/ports/SkScalerContext_mac_ct.h",
"//third_party/skia/src/ports/SkTypeface_mac_ct.cpp",
"//third_party/skia/src/ports/SkTypeface_mac_ct.h",
]
set_sources_assignment_filter(sources_assignment_filter)
}
@ -564,7 +569,13 @@ component("skia") {
if (is_ios) {
libs = [ "ImageIO.framework" ]
set_sources_assignment_filter([])
sources += [ "//third_party/skia/src/utils/mac/SkCreateCGImageRef.cpp" ]
sources += [
"//third_party/skia/src/utils/mac/SkCGBase.h",
"//third_party/skia/src/utils/mac/SkCGGeometry.h",
"//third_party/skia/src/utils/mac/SkCTFontSmoothBehavior.cpp",
"//third_party/skia/src/utils/mac/SkCTFontSmoothBehavior.h",
"//third_party/skia/src/utils/mac/SkCreateCGImageRef.cpp",
]
set_sources_assignment_filter(sources_assignment_filter)
}