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

Side by Side Diff: gyp/svg.gyp

Issue 902583006: Add SkSVGCanvas (Closed) Base URL: https://chromium.googlesource.com/skia.git@master
Patch Set: fix win warning Created 5 years, 10 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 | « gyp/dm.gypi ('k') | gyp/tools.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 { 1 {
2 'targets': [ 2 'targets': [
3 { 3 {
4 'target_name': 'svg', 4 'target_name': 'svg',
5 'product_name': 'skia_svg', 5 'product_name': 'skia_svg',
6 'type': 'static_library', 6 'type': 'static_library',
7 'standalone_static_library': 1, 7 'standalone_static_library': 1,
8 'dependencies': [ 8 'dependencies': [
9 'skia_lib.gyp:skia_lib', 9 'skia_lib.gyp:skia_lib',
10 'xml.gyp:*', 10 'xml.gyp:*',
11 ], 11 ],
12 'include_dirs': [ 12 'include_dirs': [
13 '../include/svg',
14 ],
15 'sources': [
16 '<(skia_include_path)/svg/SkSVGCanvas.h',
17
18 '<(skia_src_path)/svg/SkSVGCanvas.cpp',
19 '<(skia_src_path)/svg/SkSVGDevice.cpp',
20 '<(skia_src_path)/svg/SkSVGDevice.h',
21 ],
22 'direct_dependent_settings': {
23 'include_dirs': [
24 '../include/svg',
25 ],
26 },
27 },
28 {
29 'target_name': 'svg_parser',
30 'product_name': 'skia_svg_parser',
31 'type': 'static_library',
32 'standalone_static_library': 1,
33 'dependencies': [
34 'skia_lib.gyp:skia_lib',
35 'xml.gyp:*',
36 ],
37 'include_dirs': [
13 '../include/svg/parser', 38 '../include/svg/parser',
14 ], 39 ],
15 'sources': [ 40 'sources': [
16 '../include/svg/parser/SkSVGAttribute.h', 41 '../include/svg/parser/SkSVGAttribute.h',
17 '../include/svg/parser/SkSVGBase.h', 42 '../include/svg/parser/SkSVGBase.h',
18 '../include/svg/parser/SkSVGPaintState.h', 43 '../include/svg/parser/SkSVGPaintState.h',
19 '../include/svg/parser/SkSVGParser.h', 44 '../include/svg/parser/SkSVGParser.h',
20 '../include/svg/parser/SkSVGTypes.h', 45 '../include/svg/parser/SkSVGTypes.h',
21 46
22 '../src/svg/parser/SkSVGCircle.cpp', 47 '../src/svg/parser/SkSVGCircle.cpp',
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
75 '../src/svg/parser/SkSVG.cpp', # doesn't compile, maybe this is test c ode? 100 '../src/svg/parser/SkSVG.cpp', # doesn't compile, maybe this is test c ode?
76 ], 101 ],
77 'direct_dependent_settings': { 102 'direct_dependent_settings': {
78 'include_dirs': [ 103 'include_dirs': [
79 '../include/svg/parser', 104 '../include/svg/parser',
80 ], 105 ],
81 }, 106 },
82 }, 107 },
83 ], 108 ],
84 } 109 }
OLDNEW
« no previous file with comments | « gyp/dm.gypi ('k') | gyp/tools.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698