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

Unified Diff: gyp/freetype.gyp

Issue 152513007: Build Skia for a bare-bones embedded Linux system. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: changes Created 6 years, 10 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 6717c78f65ca01c8e066357771c11b8199cd6e9b..e6ee5540e600e37fa83a46642ccbe988ad7ce165 100644
--- a/gyp/freetype.gyp
+++ b/gyp/freetype.gyp
@@ -5,7 +5,7 @@
'target_name': 'freetype',
'type': 'none',
'conditions': [
- [ 'skia_os in ["linux", "freebsd", "openbsd", "solaris", "chromeos"]', {
+ [ 'skia_freetype_dynamic and not skia_freetype_static', {
'direct_dependent_settings': {
'include_dirs' : [
'/usr/include/freetype2',
@@ -22,7 +22,7 @@
}
},
}],
- [ 'skia_os in ["android", "nacl"]', {
+ [ 'skia_freetype_static', {
'dependencies': [
'freetype_static'
],
@@ -61,6 +61,7 @@
'standalone_static_library': 1,
'dependencies': [
# we are dependent upon PNG for color emoji glyphs
+ 'libpng.gyp:libpng',
djsollen 2014/02/06 18:22:41 Are you sure we need this? Doesn't images.gyp:20
hal.canary 2014/02/06 21:01:54 Done.
'images.gyp:images'
],
'includes': [

Powered by Google App Engine
This is Rietveld 408576698