41abd4f5cc
This was originally added to reduce the size of the large skp set by reducing the number of fonts fully serialized. At the time all fonts were fully serialized into all skps. Oddly enough this was actually a blacklist of fonts which should never be fully serialized. The list was easy to get out of date (it needed to be regenerated whenever the container the Chromium html to skp conversion ran in was updated) and unclear how to use well (the user would need to replay the skps in said container to get mostly correct playback). Since that time, it is now possible for the user to specify how to serialize typefaces. In addition, further flexibility is now provided though serialization and deserialization procs provided to the recorder so that the user can have even greater control over individual recordings, so if this is needed again there are cleaner ways to write it without globals. Also, Cluster Telemetry doesn't really capture skps this way anymore so this code isn't really being used. In the future should such a mechanism be required, it would probably be best to first create a base image of fonts to use as system fonts and then set up the container which captures the skps to use exactly those system fonts. Then all system fonts can avoid serialization and the font collection and setup (or possibly just base container) can be shared for playback. Change-Id: I27412a8fd35b89af293b4151ea8cecc2b1bc7226 Reviewed-on: https://skia-review.googlesource.com/c/skia/+/299838 Reviewed-by: Ravi Mistry <rmistry@google.com> Commit-Queue: Ben Wagner <bungeman@google.com>
109 lines
3.5 KiB
Plaintext
109 lines
3.5 KiB
Plaintext
# Copyright 2016 Google Inc.
|
|
#
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
|
|
# Things are easiest for everyone if these source paths are absolute.
|
|
_src = get_path_info("../src", "abspath")
|
|
_include = get_path_info("../include", "abspath")
|
|
|
|
skia_utils_public = [
|
|
"$_include/utils/SkAnimCodecPlayer.h",
|
|
"$_include/utils/SkBase64.h",
|
|
"$_include/utils/SkCamera.h",
|
|
"$_include/utils/SkCanvasStateUtils.h",
|
|
"$_include/utils/SkCustomTypeface.h",
|
|
"$_include/utils/SkEventTracer.h",
|
|
"$_include/utils/SkInterpolator.h",
|
|
"$_include/utils/SkNWayCanvas.h",
|
|
"$_include/utils/SkNoDrawCanvas.h",
|
|
"$_include/utils/SkNullCanvas.h",
|
|
"$_include/utils/SkPaintFilterCanvas.h",
|
|
"$_include/utils/SkParse.h",
|
|
"$_include/utils/SkParsePath.h",
|
|
"$_include/utils/SkRandom.h",
|
|
"$_include/utils/SkShadowUtils.h",
|
|
|
|
#mac
|
|
"$_include/utils/mac/SkCGUtils.h",
|
|
]
|
|
|
|
skia_utils_sources = [
|
|
"$_src/utils/SkAnimCodecPlayer.cpp",
|
|
"$_src/utils/SkBase64.cpp",
|
|
"$_src/utils/SkBitSet.h",
|
|
"$_src/utils/SkCallableTraits.h",
|
|
"$_src/utils/SkCamera.cpp",
|
|
"$_src/utils/SkCanvasStack.cpp",
|
|
"$_src/utils/SkCanvasStack.h",
|
|
"$_src/utils/SkCanvasStateUtils.cpp",
|
|
"$_src/utils/SkCharToGlyphCache.cpp",
|
|
"$_src/utils/SkCharToGlyphCache.h",
|
|
"$_src/utils/SkClipStackUtils.cpp",
|
|
"$_src/utils/SkClipStackUtils.h",
|
|
"$_src/utils/SkCustomTypeface.cpp",
|
|
"$_src/utils/SkDashPath.cpp",
|
|
"$_src/utils/SkDashPathPriv.h",
|
|
"$_src/utils/SkEventTracer.cpp",
|
|
"$_src/utils/SkFloatToDecimal.cpp",
|
|
"$_src/utils/SkFloatToDecimal.h",
|
|
"$_src/utils/SkFloatUtils.h",
|
|
"$_src/utils/SkInterpolator.cpp",
|
|
"$_src/utils/SkJSON.cpp",
|
|
"$_src/utils/SkJSON.h",
|
|
"$_src/utils/SkJSONWriter.cpp",
|
|
"$_src/utils/SkJSONWriter.h",
|
|
"$_src/utils/SkMatrix22.cpp",
|
|
"$_src/utils/SkMatrix22.h",
|
|
"$_src/utils/SkMultiPictureDocument.cpp",
|
|
"$_src/utils/SkNWayCanvas.cpp",
|
|
"$_src/utils/SkNullCanvas.cpp",
|
|
"$_src/utils/SkOSPath.cpp",
|
|
"$_src/utils/SkOSPath.h",
|
|
"$_src/utils/SkPaintFilterCanvas.cpp",
|
|
"$_src/utils/SkParse.cpp",
|
|
"$_src/utils/SkParseColor.cpp",
|
|
"$_src/utils/SkParsePath.cpp",
|
|
"$_src/utils/SkPatchUtils.cpp",
|
|
"$_src/utils/SkPatchUtils.h",
|
|
"$_src/utils/SkPolyUtils.cpp",
|
|
"$_src/utils/SkPolyUtils.h",
|
|
"$_src/utils/SkShadowTessellator.cpp",
|
|
"$_src/utils/SkShadowTessellator.h",
|
|
"$_src/utils/SkShadowUtils.cpp",
|
|
"$_src/utils/SkShaperJSONWriter.cpp",
|
|
"$_src/utils/SkShaperJSONWriter.h",
|
|
"$_src/utils/SkTextUtils.cpp",
|
|
"$_src/utils/SkThreadUtils_pthread.cpp",
|
|
"$_src/utils/SkThreadUtils_win.cpp",
|
|
"$_src/utils/SkUTF.cpp",
|
|
"$_src/utils/SkUTF.h",
|
|
|
|
#mac
|
|
"$_src/utils/mac/SkCGBase.h",
|
|
"$_src/utils/mac/SkCGGeometry.h",
|
|
"$_src/utils/mac/SkCTFontSmoothBehavior.cpp",
|
|
"$_src/utils/mac/SkCTFontSmoothBehavior.h",
|
|
"$_src/utils/mac/SkCreateCGImageRef.cpp",
|
|
"$_src/utils/mac/SkUniqueCFRef.h",
|
|
|
|
#windows
|
|
"$_src/utils/win/SkAutoCoInitialize.cpp",
|
|
"$_src/utils/win/SkAutoCoInitialize.h",
|
|
"$_src/utils/win/SkDWrite.cpp",
|
|
"$_src/utils/win/SkDWrite.h",
|
|
"$_src/utils/win/SkDWriteFontFileStream.cpp",
|
|
"$_src/utils/win/SkDWriteFontFileStream.h",
|
|
"$_src/utils/win/SkDWriteGeometrySink.cpp",
|
|
"$_src/utils/win/SkDWriteGeometrySink.h",
|
|
"$_src/utils/win/SkDWriteNTDDI_VERSION.h",
|
|
"$_src/utils/win/SkHRESULT.cpp",
|
|
"$_src/utils/win/SkHRESULT.h",
|
|
"$_src/utils/win/SkIStream.cpp",
|
|
"$_src/utils/win/SkIStream.h",
|
|
"$_src/utils/win/SkObjBase.h",
|
|
"$_src/utils/win/SkTScopedComPtr.h",
|
|
"$_src/utils/win/SkWGL.h",
|
|
"$_src/utils/win/SkWGL_win.cpp",
|
|
]
|