| OLD | NEW |
| 1 # Copyright 2015 Google Inc. | 1 # Copyright 2015 Google Inc. |
| 2 # | 2 # |
| 3 # Use of this source code is governed by a BSD-style license that can be | 3 # Use of this source code is governed by a BSD-style license that can be |
| 4 # found in the LICENSE file. | 4 # found in the LICENSE file. |
| 5 # Port-specific Skia library code. | 5 # Port-specific Skia library code. |
| 6 { | 6 { |
| 7 'targets': [ | 7 'targets': [ |
| 8 { | 8 { |
| 9 'target_name': 'ports', | 9 'target_name': 'ports', |
| 10 'product_name': 'skia_ports', | 10 'product_name': 'skia_ports', |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 59 | 59 |
| 60 '../include/ports/SkAtomics_atomic.h', | 60 '../include/ports/SkAtomics_atomic.h', |
| 61 '../include/ports/SkAtomics_std.h', | 61 '../include/ports/SkAtomics_std.h', |
| 62 '../include/ports/SkAtomics_sync.h', | 62 '../include/ports/SkAtomics_sync.h', |
| 63 '../include/ports/SkFontConfigInterface.h', | 63 '../include/ports/SkFontConfigInterface.h', |
| 64 '../include/ports/SkFontMgr.h', | 64 '../include/ports/SkFontMgr.h', |
| 65 '../include/ports/SkFontMgr_android.h', | 65 '../include/ports/SkFontMgr_android.h', |
| 66 '../include/ports/SkFontMgr_custom.h', | 66 '../include/ports/SkFontMgr_custom.h', |
| 67 '../include/ports/SkFontMgr_fontconfig.h', | 67 '../include/ports/SkFontMgr_fontconfig.h', |
| 68 '../include/ports/SkFontMgr_indirect.h', | 68 '../include/ports/SkFontMgr_indirect.h', |
| 69 '../include/ports/SkMutex_pthread.h', | |
| 70 '../include/ports/SkMutex_win.h', | |
| 71 '../include/ports/SkRemotableFontMgr.h', | 69 '../include/ports/SkRemotableFontMgr.h', |
| 72 ], | 70 ], |
| 73 'sources/': [ | 71 'sources/': [ |
| 74 ['exclude', 'SkFontMgr_.+_factory\\.cpp$'], | 72 ['exclude', 'SkFontMgr_.+_factory\\.cpp$'], |
| 75 ], | 73 ], |
| 76 'conditions': [ | 74 'conditions': [ |
| 77 [ 'skia_os in ["linux", "freebsd", "openbsd", "solaris", "chromeos", "an
droid"]', { | 75 [ 'skia_os in ["linux", "freebsd", "openbsd", "solaris", "chromeos", "an
droid"]', { |
| 78 'sources': [ | 76 'sources': [ |
| 79 '../src/ports/SkFontHost_FreeType.cpp', | 77 '../src/ports/SkFontHost_FreeType.cpp', |
| 80 '../src/ports/SkFontHost_FreeType_common.cpp', | 78 '../src/ports/SkFontHost_FreeType_common.cpp', |
| (...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 209 }], | 207 }], |
| 210 ], | 208 ], |
| 211 'direct_dependent_settings': { | 209 'direct_dependent_settings': { |
| 212 'include_dirs': [ | 210 'include_dirs': [ |
| 213 '../include/ports', | 211 '../include/ports', |
| 214 ], | 212 ], |
| 215 }, | 213 }, |
| 216 }, | 214 }, |
| 217 ], | 215 ], |
| 218 } | 216 } |
| OLD | NEW |