| OLD | NEW |
| 1 { | 1 { |
| 2 'targets': [ | 2 'targets': [ |
| 3 { | 3 { |
| 4 'target_name': 'freetype', | 4 'target_name': 'freetype', |
| 5 'type': 'none', | 5 'type': 'none', |
| 6 'conditions': [ | 6 'conditions': [ |
| 7 [ 'skia_os in ["linux", "freebsd", "openbsd", "solaris", "chromeos"]', { | 7 [ 'skia_os in ["linux", "freebsd", "openbsd", "solaris", "chromeos"]', { |
| 8 'direct_dependent_settings': { | 8 'direct_dependent_settings': { |
| 9 'include_dirs' : [ | 9 'include_dirs' : [ |
| 10 '/usr/include/freetype2', | 10 '/usr/include/freetype2', |
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 72 '../third_party/externals/freetype/src/cff/cff.c', # CFF/OpenT
ype font driver | 72 '../third_party/externals/freetype/src/cff/cff.c', # CFF/OpenT
ype font driver |
| 73 '../third_party/externals/freetype/src/sfnt/sfnt.c', # SFNT file
s support (TrueType & OpenType) | 73 '../third_party/externals/freetype/src/sfnt/sfnt.c', # SFNT file
s support (TrueType & OpenType) |
| 74 '../third_party/externals/freetype/src/truetype/truetype.c', # TrueType
font driver | 74 '../third_party/externals/freetype/src/truetype/truetype.c', # TrueType
font driver |
| 75 | 75 |
| 76 # rasterizers (optional; at least one is needed for vector formats) | 76 # rasterizers (optional; at least one is needed for vector formats) |
| 77 '../third_party/externals/freetype/src/raster/raster.c', # monochrom
e rasterizer | 77 '../third_party/externals/freetype/src/raster/raster.c', # monochrom
e rasterizer |
| 78 '../third_party/externals/freetype/src/smooth/smooth.c', # anti-alia
sing rasterizer | 78 '../third_party/externals/freetype/src/smooth/smooth.c', # anti-alia
sing rasterizer |
| 79 | 79 |
| 80 # auxiliary modules (optional) | 80 # auxiliary modules (optional) |
| 81 '../third_party/externals/freetype/src/autofit/autofit.c', # auto hint
ing module | 81 '../third_party/externals/freetype/src/autofit/autofit.c', # auto hint
ing module |
| 82 '../third_party/externals/freetype/src/psaux/psaux.c', # PostScrip
t Type 1 parsing | |
| 83 '../third_party/externals/freetype/src/pshinter/pshinter.c', # PS hintin
g module | 82 '../third_party/externals/freetype/src/pshinter/pshinter.c', # PS hintin
g module |
| 84 '../third_party/externals/freetype/src/psnames/psnames.c', # PostScrip
t glyph names support | 83 '../third_party/externals/freetype/src/psnames/psnames.c', # PostScrip
t glyph names support |
| 85 ], | 84 ], |
| 86 'include_dirs': [ | 85 'include_dirs': [ |
| 87 '../third_party/freetype', | 86 '../third_party/freetype/include_overrides', |
| 88 '../third_party/externals/freetype/internal', | 87 '../third_party/externals/freetype/internal', |
| 89 '../third_party/externals/freetype/builds', | 88 '../third_party/externals/freetype/builds', |
| 90 '../third_party/externals/freetype/include', | 89 '../third_party/externals/freetype/include', |
| 91 '../third_party/externals/freetype', | 90 '../third_party/externals/freetype', |
| 92 ], | 91 ], |
| 93 'cflags': [ | 92 'cflags': [ |
| 94 '-DFT2_BUILD_LIBRARY', | 93 '-DFT2_BUILD_LIBRARY', |
| 95 ], | 94 ], |
| 96 'direct_dependent_settings': { | 95 'direct_dependent_settings': { |
| 97 'include_dirs': [ | 96 'include_dirs': [ |
| 97 '../third_party/freetype/include_overrides', |
| 98 '../third_party/externals/freetype/include', | 98 '../third_party/externals/freetype/include', |
| 99 ], | 99 ], |
| 100 }, | 100 }, |
| 101 'conditions': [ | 101 'conditions': [ |
| 102 [ 'skia_warnings_as_errors', { | 102 [ 'skia_warnings_as_errors', { |
| 103 'cflags!': [ | 103 'cflags!': [ |
| 104 '-Werror', | 104 '-Werror', |
| 105 ], | 105 ], |
| 106 }], | 106 }], |
| 107 [ 'skia_os == "mac"', { | 107 [ 'skia_os == "mac"', { |
| (...skipping 17 matching lines...) Expand all Loading... |
| 125 ], | 125 ], |
| 126 }, | 126 }, |
| 127 ], | 127 ], |
| 128 } | 128 } |
| 129 | 129 |
| 130 # Local Variables: | 130 # Local Variables: |
| 131 # tab-width:2 | 131 # tab-width:2 |
| 132 # indent-tabs-mode:nil | 132 # indent-tabs-mode:nil |
| 133 # End: | 133 # End: |
| 134 # vim: set expandtab tabstop=2 shiftwidth=2: | 134 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |