Commit 2d9e7ee4 authored by Ben Wagner's avatar Ben Wagner Committed by Commit Bot

Roll src/third_party/freetype/src/ b532d7ce7..578bcf103 (28 commits)

https://chromium.googlesource.com/chromium/src/third_party/freetype2.git/+log/b532d7ce708c..578bcf103a12

$ git log b532d7ce7..578bcf103 --date=short --no-merges --format='%ad %ae %s'
2018-07-30 wl [cff] Fix typo.
2018-07-29 wl * src/pcf/pcfread.c (pcf_get_encodings): Another thinko.
2018-07-28 apodtele * builds/unix/configure.raw: Minor.
2018-07-28 apodtele [smooth] Fix Harmony memory management.
2018-07-28 wl [type1] Avoid segfaults with `FT_Get_PS_Font_Value'.
2018-07-27 wl [truetype] Make `TT_Set_MM_Blend' idempotent (#54388).
2018-07-27 wl [psaux, type1]: More tracing improvements.
2018-07-26 wl Document FT_Module_Class's `module_interface' field.
2018-07-25 wl [psaux, type1] Trace PostScript dictionaries and other things.
2018-07-25 wl Fix minor ASAN run-time warnings.
2018-07-24 apodtele [build] Fortify dllexport/dllimport attributes (#53969,#54330).
2018-07-24 wl [type1] Check relationship between number of axes and designs.
2018-07-24 htl10 [truetype] Match ttdebug's naming of instruction mnemonics.
2018-07-24 wl * src/pcf/pcfread.c (pcf_get_encodings): Thinko.
2018-07-22 wl * src/pcf/pcfread.c (pcf_get_encodings): Check index of defaultChar.
2018-07-22 wl * src/pcf/pcfread.c (pcf_load_font): Fix number of glyphs.
2018-07-22 wl [cid] Sanitize `BlueShift' and `BlueFuzz'.
2018-07-22 wl Fix links.
2018-07-21 wl Minor comment improvement.
2018-07-21 wl [pcf] Fix handling of the undefined glyph.
2018-07-21 wl Improve stream extraction macro documentation.
2018-07-20 prince.cherusker Move the legacy fuzz target to the `freetype-testing' repository.
2018-07-20 wl [cff] Avoid left-shift of negative numbers (#54322).
2018-07-17 wl Allow FT_ENCODING_NONE for `FT_Select_Charmap'.
2018-07-17 wl * src/pcf/pcfread.c (pcf_get_encodings): Trace `defaultChar'.
2018-07-16 prince.cherusker * include/freetype/internal/ftcalc.h: Add macros for handling harmless over-/underflowing `FT_Int' values.
2018-07-16 wl * src/truetype/ttgxvar.c (tt_set_mm_blend): Fix off-by-one error.
2018-07-12 wl * src/base/ftoutln.c (FT_Outline_Get_Orientation): Init `cbox'.

Created with:
  roll-dep src/third_party/freetype/src
R=bungeman@chromium.org,drott@chromium.org

CQ_INCLUDE_TRYBOTS=luci.chromium.try:linux_chromium_msan_rel_ng

PDFium-Issue: pdfium:1125
Change-Id: I09a0c66426dfdade532fe262d0ace7656e3d1b53
Reviewed-on: https://chromium-review.googlesource.com/1155652Reviewed-by: default avatarDominik Röttsches <drott@chromium.org>
Commit-Queue: Dominik Röttsches <drott@chromium.org>
Cr-Commit-Position: refs/heads/master@{#579342}
parent e653e90c
...@@ -157,7 +157,7 @@ vars = { ...@@ -157,7 +157,7 @@ vars = {
# Three lines of non-changing comments so that # Three lines of non-changing comments so that
# the commit queue can handle CLs rolling freetype # the commit queue can handle CLs rolling freetype
# and whatever else without interference from each other. # and whatever else without interference from each other.
'freetype_revision': 'b532d7ce708cb5ca9bf88abaa2eb213ddcf9babb', 'freetype_revision': '578bcf103a12fb742cdb314565819011d1ac12a7',
# Three lines of non-changing comments so that # Three lines of non-changing comments so that
# the commit queue can handle CLs rolling HarfBuzz # the commit queue can handle CLs rolling HarfBuzz
# and whatever else without interference from each other. # and whatever else without interference from each other.
......
Name: FreeType Name: FreeType
URL: http://www.freetype.org/ URL: http://www.freetype.org/
Version: VER-2-9-1-115 Version: VER-2-9-1-143
Revision: b532d7ce708cb5ca9bf88abaa2eb213ddcf9babb Revision: 578bcf103a12fb742cdb314565819011d1ac12a7
License: Custom license "inspired by the BSD, Artistic, and IJG (Independent License: Custom license "inspired by the BSD, Artistic, and IJG (Independent
JPEG Group) licenses" JPEG Group) licenses"
License File: src/docs/FTL.TXT License File: src/docs/FTL.TXT
......
...@@ -482,7 +482,7 @@ FT_BEGIN_HEADER ...@@ -482,7 +482,7 @@ FT_BEGIN_HEADER
#ifdef FT2_BUILD_LIBRARY #ifdef FT2_BUILD_LIBRARY
#if defined( _WIN32 ) && ( defined( _DLL ) || defined( DLL_EXPORT ) ) #if defined( _WIN32 ) && defined( DLL_EXPORT )
#define FT_EXPORT( x ) __declspec( dllexport ) x #define FT_EXPORT( x ) __declspec( dllexport ) x
#elif defined( __GNUC__ ) && __GNUC__ >= 4 #elif defined( __GNUC__ ) && __GNUC__ >= 4
#define FT_EXPORT( x ) __attribute__(( visibility( "default" ) )) x #define FT_EXPORT( x ) __attribute__(( visibility( "default" ) )) x
...@@ -494,7 +494,7 @@ FT_BEGIN_HEADER ...@@ -494,7 +494,7 @@ FT_BEGIN_HEADER
#else #else
#if defined( FT2_DLLIMPORT ) #if defined( _WIN32 ) && defined( DLL_IMPORT )
#define FT_EXPORT( x ) __declspec( dllimport ) x #define FT_EXPORT( x ) __declspec( dllimport ) x
#elif defined( __cplusplus ) #elif defined( __cplusplus )
#define FT_EXPORT( x ) extern "C" x #define FT_EXPORT( x ) extern "C" x
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment