OLD | NEW |
---|---|
1 { | 1 { |
2 'targets': [ | 2 'targets': [ |
3 { | 3 { |
4 'target_name': 'xps_none', | |
5 'type': 'static_library', | |
6 'standalone_static_library': 1, | |
7 'dependencies': [ 'skia_lib.gyp:skia_lib', ], | |
8 'sources': [ '../src/doc/SkDocument_XPS_None.cpp', ], | |
9 }, | |
10 { | |
4 'target_name': 'xps', | 11 'target_name': 'xps', |
5 'product_name': 'skia_xps', | 12 'product_name': 'skia_xps', |
6 'type': 'static_library', | 13 'type': 'static_library', |
7 'standalone_static_library': 1, | 14 'standalone_static_library': 1, |
8 'dependencies': [ | 15 'dependencies': [ |
9 'skia_lib.gyp:skia_lib', | 16 'skia_lib.gyp:skia_lib', |
10 'sfnt.gyp:sfnt', | 17 'sfnt.gyp:sfnt', |
11 ], | 18 ], |
12 'include_dirs': [ | 19 'include_dirs': [ |
13 '../include/device/xps', | 20 '../include/device/xps', |
14 '../include/utils/win', | 21 '../include/utils/win', |
15 '../src/core', # needed to get SkGlyphCache.h | 22 '../src/core', # needed to get SkGlyphCache.h |
16 '../src/utils', # needed to get SkBitSet.h | 23 '../src/utils', # needed to get SkBitSet.h |
17 ], | 24 ], |
18 'sources': [ | 25 'sources': [ |
19 '../include/device/xps/SkConstexprMath.h', | 26 '../include/device/xps/SkConstexprMath.h', |
20 '../include/device/xps/SkXPSDevice.h', | 27 '../include/device/xps/SkXPSDevice.h', |
21 | 28 |
22 '../src/device/xps/SkXPSDevice.cpp', | 29 '../src/device/xps/SkXPSDevice.cpp', |
30 '../src/doc/SkDocument_XPS.cpp', | |
23 ], | 31 ], |
32 'defines': [ 'SK_SUPPORT_XPS', ], | |
bungeman-skia
2015/03/02 22:39:12
I don't think this define is used anywhere anymore
hal.canary
2015/03/02 23:08:25
Done.
| |
24 'conditions': [ | 33 'conditions': [ |
25 [ 'skia_os == "win"', { | 34 [ 'skia_os == "win"', { |
26 'link_settings': { | 35 'link_settings': { |
27 'libraries': [ | 36 'libraries': [ |
28 '-lt2embed.lib', | 37 '-lt2embed.lib', |
29 '-lfontsub.lib', | 38 '-lfontsub.lib', |
30 ], | 39 ], |
31 }, | 40 }, |
32 },{ #else if 'skia_os != "win"' | 41 },{ #else if 'skia_os != "win"' |
33 'include_dirs!': [ | 42 'include_dirs!': [ |
(...skipping 17 matching lines...) Expand all Loading... | |
51 }], | 60 }], |
52 ], | 61 ], |
53 'include_dirs': [ | 62 'include_dirs': [ |
54 '../include/device/xps', | 63 '../include/device/xps', |
55 '../src/utils', # needed to get SkBitSet.h | 64 '../src/utils', # needed to get SkBitSet.h |
56 ], | 65 ], |
57 }, | 66 }, |
58 }, | 67 }, |
59 ], | 68 ], |
60 } | 69 } |
OLD | NEW |