skia2/third_party
Kevin Lubick 08bf8f79f1 [canvaskit] Remove support for T1 fonts and reduce code size
We were previously building FreeType2 with the psnames module,
which included large tables of glyphnames [1]. These were only
used in code related to PDF (and only when outputting Type 1
fonts, which is very rare).

Even though the PDF backend isn't in CanvasKit, the compiler
couldn't throw away these massive tables (about 80k in all)
of strings. Since these tables were only used for T1 fonts,
it made sense to tell FreeType not to include the rest of the
T1 related code, which saved about 55k more.

If, one day, we add in support for the PDF backend to CanvasKit,
SK_PDF_DO_NOT_SUPPORT_TYPE_1_FONTS is likely something we'll
want to define.

The roll-freetype.sh is inspired by a script of the same name
in the Chromium repo and aids in the updating of freetype
and our forked config files.

[1] 0a3d2bb99b/src/psnames/pstables.h (629)

Bug: skia:9733
Change-Id: I359bab4184587cbe91400661fb012eac1a601a83
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/262232
Reviewed-by: Ben Wagner <bungeman@google.com>
2020-01-06 18:49:41 +00:00
..
angle2 disable warnings in ANGLE 2019-12-18 19:24:11 +00:00
cpu-features GN: Android 2016-08-25 14:50:44 -07:00
dawn Roll Dawn to ToT. 2019-11-05 20:56:44 +00:00
dng_sdk remove mips support and bots 2017-12-05 17:19:45 +00:00
etc1 AFAICT, only gm/etc1 uses third_party/etc1 2019-04-24 18:57:58 +00:00
expat Strengthen is_official_build, update docs. 2017-03-03 15:41:24 +00:00
freetype2 [canvaskit] Remove support for T1 fonts and reduce code size 2020-01-06 18:49:41 +00:00
harfbuzz Roll ICU and Harfbuzz 2019-12-26 18:13:42 +00:00
icu Fix CMake build 2019-12-26 19:33:42 +00:00
imgui GLSL editing in Viewer 2019-04-12 16:23:54 +00:00
libjpeg-turbo build libjpeg-turbo with -DUSE_CLZ_INTRINSIC 2020-01-02 18:06:36 +00:00
libmicrohttpd GN/Win: everything links on my machine. 2016-10-12 16:39:42 +00:00
libpng IWYU for tests A-D. 2019-05-07 14:24:15 +00:00
libsdl Add iOS support for SkiaSDLExample. 2017-08-30 18:56:46 +00:00
libwebp Update libwebp to 1.0.2-rc1 2019-01-17 16:00:25 +00:00
lua avoid using tmpnam() in Lua 2018-02-01 22:39:59 +00:00
native_app_glue Add Android viewer to GN 2016-10-21 15:19:32 +00:00
opencl update hello-opencl 2019-02-11 18:47:32 +00:00
piex Reland "Build SkRawCodec in GN" 2016-10-31 09:02:57 -07:00
sfntly rewrite *.gn and #includes on CheckGeneratedFiles bot 2019-07-25 20:48:33 +00:00
skcms Roll skia/third_party/skcms ab3cf9c7bd22..605b00d7728f (1 commits) 2020-01-03 16:21:17 +00:00
spirv-cross Update Dawn backend to ToT. This is about 3 months of changes. 2019-10-15 22:26:38 +00:00
spirv-headers wired up SPIR-V validator 2017-03-16 14:42:20 +00:00
spirv-tools Fix spirv-tools include path 2019-08-28 13:58:25 +00:00
vulkanmemoryallocator rewrite includes to not need so much -Ifoo 2019-04-24 16:27:11 +00:00
wuffs Update third_party/wuffs version 2019-01-07 15:13:07 +00:00
zlib clang on windows support 2017-07-31 18:39:23 +00:00
BUILD.gn GN: Android 2016-08-25 14:50:44 -07:00
README BUG=skia:5602 2016-09-02 11:19:34 -07:00
third_party.gni Remove third_party warning suppression for MSVC:4244 2019-12-30 16:13:56 +00:00

The third_party directory contains a set of dependencies from outside sources
that are needed to build various components and tools within Skia.  

Some of these dependencies reside within the Skia repo, while others are pulled 
from other repositories and placed in the third_party/externals directory
during build. These external dependencies are defined in a DEPS file.

Products in third_party are subject to their own respective license terms.  The
license for each project should be included in the source itself via a license
header or file.  If the source itself does not include a license header or file,
create a README that refers to reliable documentation of the project's license
terms on the web.