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

Unified Diff: gyp/svg.gyp

Issue 2164193002: Initial SVG model (Closed) Base URL: https://chromium.googlesource.com/skia.git@master
Patch Set: warning fix Created 4 years, 5 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/samples.gypi ('k') | include/xml/SkDOM.h » ('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 8fc4b9725bf442925d56b6b658c004afc8322c19..f5b43f8f072c0c141e74ca058328fa9360f63fbc 100644
--- a/gyp/svg.gyp
+++ b/gyp/svg.gyp
@@ -31,5 +31,45 @@
],
},
},
+ {
+ 'target_name': 'svgdom',
+ 'type': 'static_library',
+ 'standalone_static_library': 1,
+ 'dependencies': [
+ 'skia_lib.gyp:skia_lib',
+ 'xml.gyp:xml',
+ ],
+ 'include_dirs': [
+ '<(skia_include_path)/private',
+ '../experimental/svg/model',
+ ],
+ 'sources': [
+ '../experimental/svg/model/SkSVGAttribute.h',
+ '../experimental/svg/model/SkSVGAttribute.cpp',
+ '../experimental/svg/model/SkSVGContainer.h',
+ '../experimental/svg/model/SkSVGContainer.cpp',
+ '../experimental/svg/model/SkSVGDOM.h',
+ '../experimental/svg/model/SkSVGDOM.cpp',
+ '../experimental/svg/model/SkSVGG.h',
+ '../experimental/svg/model/SkSVGNode.h',
+ '../experimental/svg/model/SkSVGNode.cpp',
+ '../experimental/svg/model/SkSVGPath.h',
+ '../experimental/svg/model/SkSVGPath.cpp',
+ '../experimental/svg/model/SkSVGRenderContext.h',
+ '../experimental/svg/model/SkSVGRenderContext.cpp',
+ '../experimental/svg/model/SkSVGSVG.h',
+ '../experimental/svg/model/SkSVGSVG.cpp',
+ '../experimental/svg/model/SkSVGTransformableNode.h',
+ '../experimental/svg/model/SkSVGTransformableNode.cpp',
+ '../experimental/svg/model/SkSVGValue.h',
+ '../experimental/svg/model/SkSVGValue.cpp',
+ ],
+ 'direct_dependent_settings': {
+ 'include_dirs': [
+ '../experimental/svg/model',
+ ],
+ },
+ },
+
],
}
« no previous file with comments | « gyp/samples.gypi ('k') | include/xml/SkDOM.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698