| 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 { | 5 { |
| 6 'targets': [ | 6 'targets': [ |
| 7 { | 7 { |
| 8 'target_name': 'xps', | 8 'target_name': 'xps', |
| 9 'product_name': 'skia_xps', | 9 'product_name': 'skia_xps', |
| 10 'type': 'static_library', | 10 'type': 'static_library', |
| 11 'standalone_static_library': 1, | 11 'standalone_static_library': 1, |
| 12 'conditions': [ | 12 'conditions': [ |
| 13 [ 'skia_os == "win"', { | 13 [ 'skia_os == "win"', { |
| 14 'defines': [ 'SK_XPS_USE_DETERMINISTIC_IDS', ], | 14 'defines': [ 'SK_XPS_USE_DETERMINISTIC_IDS', ], |
| 15 'dependencies': [ | 15 'dependencies': [ |
| 16 'skia_lib.gyp:skia_lib', | 16 'skia_lib.gyp:skia_lib', |
| 17 ], | 17 ], |
| 18 'include_dirs': [ | 18 'include_dirs': [ |
| 19 '../include/private', | 19 '../include/private', |
| 20 '../include/utils/win', | 20 '../include/utils/win', |
| 21 '../src/core', # needed to get SkGlyphCache.h | 21 '../src/core', # needed to get SkGlyphCache.h |
| 22 '../src/utils', # needed to get SkBitSet.h | 22 '../src/utils', # needed to get SkBitSet.h |
| 23 ], | 23 ], |
| 24 'sources': [ | 24 'sources': [ |
| 25 '../src/xps/SkConstexprMath.h', | |
| 26 '../src/xps/SkDocument_XPS.cpp', | 25 '../src/xps/SkDocument_XPS.cpp', |
| 27 '../src/xps/SkXPSDevice.cpp', | 26 '../src/xps/SkXPSDevice.cpp', |
| 28 '../src/xps/SkXPSDevice.h', | 27 '../src/xps/SkXPSDevice.h', |
| 29 ], | 28 ], |
| 30 'link_settings': { | 29 'link_settings': { |
| 31 'libraries': [ | 30 'libraries': [ |
| 32 '-lt2embed.lib', | 31 '-lt2embed.lib', |
| 33 '-lfontsub.lib', | 32 '-lfontsub.lib', |
| 34 ], | 33 ], |
| 35 }, | 34 }, |
| 36 'direct_dependent_settings': { | 35 'direct_dependent_settings': { |
| 37 'defines': [ 'SK_XPS_USE_DETERMINISTIC_IDS', ], | 36 'defines': [ 'SK_XPS_USE_DETERMINISTIC_IDS', ], |
| 38 'include_dirs': [ | 37 'include_dirs': [ |
| 39 '../include/device/xps', | 38 '../include/device/xps', |
| 40 '../src/utils', # needed to get SkBitSet.h | 39 '../src/utils', # needed to get SkBitSet.h |
| 41 ], | 40 ], |
| 42 }, | 41 }, |
| 43 },{ #else if 'skia_os != "win"' | 42 },{ #else if 'skia_os != "win"' |
| 44 'sources': [ '../src/xps/SkDocument_XPS_None.cpp', ], | 43 'sources': [ '../src/xps/SkDocument_XPS_None.cpp', ], |
| 45 'dependencies': [ 'skia_lib.gyp:skia_lib', ], | 44 'dependencies': [ 'skia_lib.gyp:skia_lib', ], |
| 46 }], | 45 }], |
| 47 ], | 46 ], |
| 48 }, | 47 }, |
| 49 ], | 48 ], |
| 50 } | 49 } |
| OLD | NEW |