Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(389)

Side by Side Diff: gyp/xps.gyp

Issue 963953002: XPS, DM: add SkDocument::CreateXPS (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: 2015-03-02 (Monday) 17:31:32 EST Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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 }
OLDNEW
« dm/DM.cpp ('K') | « gyp/dm.gyp ('k') | include/core/SkDocument.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698