| 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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 44 'SK_CAN_USE_DLOPEN=1', | 44 'SK_CAN_USE_DLOPEN=1', |
| 45 ], | 45 ], |
| 46 'link_settings': { | 46 'link_settings': { |
| 47 'libraries': [ | 47 'libraries': [ |
| 48 '-lfreetype', | 48 '-lfreetype', |
| 49 '-lfontconfig', | 49 '-lfontconfig', |
| 50 '-ldl', | 50 '-ldl', |
| 51 ], | 51 ], |
| 52 }, | 52 }, |
| 53 'sources': [ | 53 'sources': [ |
| 54 '../src/fonts/SkFontMgr_fontconfig.cpp', |
| 54 '../src/ports/SkFontHost_FreeType.cpp', | 55 '../src/ports/SkFontHost_FreeType.cpp', |
| 55 '../src/ports/SkFontHost_FreeType_common.cpp', | 56 '../src/ports/SkFontHost_FreeType_common.cpp', |
| 56 '../src/ports/SkFontHost_fontconfig.cpp', | 57 '../src/ports/SkFontHost_fontconfig.cpp', |
| 57 '../src/ports/SkFontConfigInterface_direct.cpp', | 58 '../src/ports/SkFontConfigInterface_direct.cpp', |
| 58 '../src/ports/SkThread_pthread.cpp', | 59 '../src/ports/SkThread_pthread.cpp', |
| 59 ], | 60 ], |
| 60 }], | 61 }], |
| 61 [ 'skia_os == "nacl"', { | 62 [ 'skia_os == "nacl"', { |
| 62 'dependencies': [ | 63 'dependencies': [ |
| 63 # On other OS, we can dynamically link against freetype. For nacl, | 64 # On other OS, we can dynamically link against freetype. For nacl, |
| (...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 182 }, | 183 }, |
| 183 }, | 184 }, |
| 184 ], | 185 ], |
| 185 } | 186 } |
| 186 | 187 |
| 187 # Local Variables: | 188 # Local Variables: |
| 188 # tab-width:2 | 189 # tab-width:2 |
| 189 # indent-tabs-mode:nil | 190 # indent-tabs-mode:nil |
| 190 # End: | 191 # End: |
| 191 # vim: set expandtab tabstop=2 shiftwidth=2: | 192 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |