Initial commit of font compression code into public project.

This commit is contained in:
Raph Levien
2012-03-23 11:21:16 -07:00
commit dcecdd883a
49 changed files with 8454 additions and 0 deletions
+43
View File
@@ -0,0 +1,43 @@
{
'variables': {
'ots_include_dirs': [
# This isn't particularly elegant, but it works
'../ots-read-only/include',
'../ots-read-only/src',
],
},
'target_defaults': {
'defines': [
'OTS_DEBUG',
],
},
'targets': [
{
'target_name': 'woff2',
'type': 'static_library',
'sources': [
'woff2.cc',
],
'include_dirs': [
'<@(ots_include_dirs)',
],
'dependencies': [
'../ots-read-only/ots-standalone.gyp:ots',
],
},
{
'target_name': 'woff2-decompress',
'type': 'executable',
'sources': [
'woff2-decompress.cc',
],
'include_dirs': [
'<@(ots_include_dirs)',
],
'dependencies': [
'woff2',
],
},
],
}