skia2/gyp/xps.gyp
borenet@google.com efb1d77ad2 Build Skia as a static library
- Roll GYP so that we get non-thin archives on Linux
- Add merge_static_libs.py
- Add skia_core_lib target which builds core, ports, opts*, and utils
- Replace dependencies on core/ports/opts/utils with skia_core_libs
- Rename exportable libraries with "skia_"
Review URL: https://codereview.appspot.com/6619049

git-svn-id: http://skia.googlecode.com/svn/trunk@5889 2bbb7eff-a529-9590-31e7-b0007b416f81
2012-10-10 19:45:51 +00:00

67 lines
1.7 KiB
Python

{
'targets': [
{
'target_name': 'xps',
'product_name': 'skia_xps',
'type': 'static_library',
'standalone_static_library': 1,
'dependencies': [
'skia_base_libs.gyp:skia_base_libs',
'images.gyp:images',
],
'include_dirs': [
'../include/device/xps',
'../include/utils/win',
'../src/core', # needed to get SkGlyphCache.h
'../src/utils', # needed to get SkBitSet.h
],
'sources': [
'../include/device/xps/SkConstexprMath.h',
'../include/device/xps/SkXPSDevice.h',
'../src/device/xps/SkXPSDevice.cpp',
],
'conditions': [
[ 'skia_os == "win"', {
'link_settings': {
'libraries': [
'T2Embed.lib',
'FontSub.lib',
],
},
},{ #else if 'skia_os != "win"'
'include_dirs!': [
'../include/utils/win',
],
'sources!': [
'../include/device/xps/SkXPSDevice.h',
'../src/device/xps/SkXPSDevice.cpp',
],
}],
],
# This section makes all targets that depend on this target
# #define SK_SUPPORT_XPS and have access to the xps header files.
'direct_dependent_settings': {
'conditions': [
[ 'skia_os == "win"', {
'defines': [
'SK_SUPPORT_XPS',
],
}],
],
'include_dirs': [
'../include/device/xps',
'../src/utils', # needed to get SkBitSet.h
],
},
},
],
}
# Local Variables:
# tab-width:2
# indent-tabs-mode:nil
# End:
# vim: set expandtab tabstop=2 shiftwidth=2: