| OLD | NEW | 
|    1 # Port-specific Skia library code. |    1 # Port-specific Skia library code. | 
|    2 { |    2 { | 
|    3   'targets': [ |    3   'targets': [ | 
|    4     { |    4     { | 
|    5       'target_name': 'ports', |    5       'target_name': 'ports', | 
|    6       'product_name': 'skia_ports', |    6       'product_name': 'skia_ports', | 
|    7       'type': 'static_library', |    7       'type': 'static_library', | 
|    8       'standalone_static_library': 1, |    8       'standalone_static_library': 1, | 
|    9       'dependencies': [ |    9       'dependencies': [ | 
|   10         'core.gyp:core', |   10         'core.gyp:core', | 
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|   50               '-ldl', |   50               '-ldl', | 
|   51             ], |   51             ], | 
|   52           }, |   52           }, | 
|   53           'sources': [ |   53           'sources': [ | 
|   54             '../src/ports/SkFontHost_FreeType.cpp', |   54             '../src/ports/SkFontHost_FreeType.cpp', | 
|   55             '../src/ports/SkFontHost_FreeType_common.cpp', |   55             '../src/ports/SkFontHost_FreeType_common.cpp', | 
|   56             '../src/ports/SkFontHost_fontconfig.cpp', |   56             '../src/ports/SkFontHost_fontconfig.cpp', | 
|   57             '../src/ports/SkFontConfigInterface_direct.cpp', |   57             '../src/ports/SkFontConfigInterface_direct.cpp', | 
|   58             '../src/ports/SkThread_pthread.cpp', |   58             '../src/ports/SkThread_pthread.cpp', | 
|   59           ], |   59           ], | 
 |   60           'sources!': [ | 
 |   61             '../src/ports/SkFontHost_tables.cpp', | 
 |   62           ], | 
|   60         }], |   63         }], | 
|   61         [ 'skia_os == "nacl"', { |   64         [ 'skia_os == "nacl"', { | 
|   62           'dependencies': [ |   65           'dependencies': [ | 
|   63             # On other OS, we can dynamically link against freetype.  For nacl, |   66             # On other OS, we can dynamically link against freetype.  For nacl, | 
|   64             # we have to include our own version since the naclports version is |   67             # we have to include our own version since the naclports version is | 
|   65             # too old (<0x020300) to provide the functionality we need. |   68             # too old (<0x020300) to provide the functionality we need. | 
|   66             'freetype.gyp:freetype', |   69             'freetype.gyp:freetype', | 
|   67           ], |   70           ], | 
|   68           'export_dependent_settings': [ |   71           'export_dependent_settings': [ | 
|   69             'freetype.gyp:freetype', |   72             'freetype.gyp:freetype', | 
| (...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|  180       }, |  183       }, | 
|  181     }, |  184     }, | 
|  182   ], |  185   ], | 
|  183 } |  186 } | 
|  184  |  187  | 
|  185 # Local Variables: |  188 # Local Variables: | 
|  186 # tab-width:2 |  189 # tab-width:2 | 
|  187 # indent-tabs-mode:nil |  190 # indent-tabs-mode:nil | 
|  188 # End: |  191 # End: | 
|  189 # vim: set expandtab tabstop=2 shiftwidth=2: |  192 # vim: set expandtab tabstop=2 shiftwidth=2: | 
| OLD | NEW |