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

Side by Side Diff: gyp/xps.gyp

Issue 1038693003: Remove sfnt dependency from xps gyp tartget. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 'sfnt.gyp:sfnt',
18 ], 17 ],
19 'include_dirs': [ 18 'include_dirs': [
20 '../include/device/xps', 19 '../include/device/xps',
21 '../include/utils/win', 20 '../include/utils/win',
22 '../src/core', # needed to get SkGlyphCache.h 21 '../src/core', # needed to get SkGlyphCache.h
23 '../src/utils', # needed to get SkBitSet.h 22 '../src/utils', # needed to get SkBitSet.h
24 ], 23 ],
25 'sources': [ 24 'sources': [
26 '../include/device/xps/SkConstexprMath.h', 25 '../include/device/xps/SkConstexprMath.h',
27 '../include/device/xps/SkXPSDevice.h', 26 '../include/device/xps/SkXPSDevice.h',
(...skipping 14 matching lines...) Expand all
42 ], 41 ],
43 }, 42 },
44 },{ #else if 'skia_os != "win"' 43 },{ #else if 'skia_os != "win"'
45 'sources': [ '../src/doc/SkDocument_XPS_None.cpp', ], 44 'sources': [ '../src/doc/SkDocument_XPS_None.cpp', ],
46 'dependencies': [ 'skia_lib.gyp:skia_lib', ], 45 'dependencies': [ 'skia_lib.gyp:skia_lib', ],
47 }], 46 }],
48 ], 47 ],
49 }, 48 },
50 ], 49 ],
51 } 50 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698