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 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
64 '../src/ports/SkTLS_pthread.cpp', | 64 '../src/ports/SkTLS_pthread.cpp', |
65 '../src/ports/SkTLS_win.cpp', | 65 '../src/ports/SkTLS_win.cpp', |
66 | 66 |
67 '../include/ports/SkFontConfigInterface.h', | 67 '../include/ports/SkFontConfigInterface.h', |
68 '../include/ports/SkFontMgr.h', | 68 '../include/ports/SkFontMgr.h', |
69 '../include/ports/SkFontMgr_android.h', | 69 '../include/ports/SkFontMgr_android.h', |
70 '../include/ports/SkFontMgr_custom.h', | 70 '../include/ports/SkFontMgr_custom.h', |
71 '../include/ports/SkFontMgr_fontconfig.h', | 71 '../include/ports/SkFontMgr_fontconfig.h', |
72 '../include/ports/SkFontMgr_indirect.h', | 72 '../include/ports/SkFontMgr_indirect.h', |
73 '../include/ports/SkRemotableFontMgr.h', | 73 '../include/ports/SkRemotableFontMgr.h', |
74 | |
75 '../src/ports/SkImageGeneratorCG.cpp', | |
scroggo
2016/03/02 13:08:14
This file seems to have gotten messy. Sometimes we
msarett
2016/03/04 23:48:33
Now we only build this file on Mac/iOS. Removed b
| |
74 ], | 76 ], |
75 'sources/': [ | 77 'sources/': [ |
76 ['exclude', 'SkFontMgr_.+_factory\\.cpp$'], | 78 ['exclude', 'SkFontMgr_.+_factory\\.cpp$'], |
77 ], | 79 ], |
78 'conditions': [ | 80 'conditions': [ |
79 [ 'skia_os in ["linux", "freebsd", "openbsd", "solaris", "chromeos", "an droid"]', { | 81 [ 'skia_os in ["linux", "freebsd", "openbsd", "solaris", "chromeos", "an droid"]', { |
80 'sources': [ | 82 'sources': [ |
81 '../src/ports/SkFontHost_FreeType.cpp', | 83 '../src/ports/SkFontHost_FreeType.cpp', |
82 '../src/ports/SkFontHost_FreeType_common.cpp', | 84 '../src/ports/SkFontHost_FreeType_common.cpp', |
83 '../src/ports/SkFontMgr_android.cpp', | 85 '../src/ports/SkFontMgr_android.cpp', |
(...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
208 }], | 210 }], |
209 ], | 211 ], |
210 'direct_dependent_settings': { | 212 'direct_dependent_settings': { |
211 'include_dirs': [ | 213 'include_dirs': [ |
212 '../include/ports', | 214 '../include/ports', |
213 ], | 215 ], |
214 }, | 216 }, |
215 }, | 217 }, |
216 ], | 218 ], |
217 } | 219 } |
OLD | NEW |