Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(261)

Unified Diff: gyp/freetype.gyp

Issue 19931003: Update freetype DEPS to version 2.5 with PNG encoded color bitmap glyphs (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: Created 7 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: gyp/freetype.gyp
diff --git a/gyp/freetype.gyp b/gyp/freetype.gyp
index 91fc0b3db690d3979b6e7e03282c518649e8cf9b..8800674f6f0412d5f89468fe4bdd51d6a0bb8c25 100644
--- a/gyp/freetype.gyp
+++ b/gyp/freetype.gyp
@@ -42,6 +42,10 @@
'target_name': 'freetype_static',
'type': 'static_library',
'standalone_static_library': 1,
+ 'dependencies': [
+ # we are dependent upon PNG for color emoji glyphs
+ 'images.gyp:images'
+ ],
'sources': [
# base components (required)
'../third_party/externals/freetype/src/base/ftsystem.c',
@@ -80,6 +84,7 @@
'../third_party/externals/freetype/src/psnames/psnames.c', # PostScript glyph names support
],
'include_dirs': [
+ '../third_party/freetype',
'../third_party/externals/freetype/internal',
'../third_party/externals/freetype/builds',
'../third_party/externals/freetype/include',
@@ -94,6 +99,11 @@
],
},
'conditions': [
+ [ 'skia_warnings_as_errors', {
+ 'cflags!': [
+ '-Werror',
+ ],
+ }],
[ 'skia_os == "mac"', {
'sources': [
'../third_party/externals/freetype/src/base/ftmac.c', # only on the Macintosh

Powered by Google App Engine
This is Rietveld 408576698