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

Unified 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « gyp/dm.gypi ('k') | gyp/tools.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gyp/svg.gyp
diff --git a/gyp/svg.gyp b/gyp/svg.gyp
index 4c0822ec385ef085c60c2497e593c3e71b558430..d681bda219b12d13c75d9f55b7d53fdf71bdbc8d 100644
--- a/gyp/svg.gyp
+++ b/gyp/svg.gyp
@@ -10,6 +10,31 @@
'xml.gyp:*',
],
'include_dirs': [
+ '../include/svg',
+ ],
+ 'sources': [
+ '<(skia_include_path)/svg/SkSVGCanvas.h',
+
+ '<(skia_src_path)/svg/SkSVGCanvas.cpp',
+ '<(skia_src_path)/svg/SkSVGDevice.cpp',
+ '<(skia_src_path)/svg/SkSVGDevice.h',
+ ],
+ 'direct_dependent_settings': {
+ 'include_dirs': [
+ '../include/svg',
+ ],
+ },
+ },
+ {
+ 'target_name': 'svg_parser',
+ 'product_name': 'skia_svg_parser',
+ 'type': 'static_library',
+ 'standalone_static_library': 1,
+ 'dependencies': [
+ 'skia_lib.gyp:skia_lib',
+ 'xml.gyp:*',
+ ],
+ 'include_dirs': [
'../include/svg/parser',
],
'sources': [
« 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