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

Side by Side Diff: gyp/svg.gyp

Issue 2202053002: [SVGDom/experimental] Initial SVGLength support (Closed) Base URL: https://chromium.googlesource.com/skia.git@master
Patch Set: review Created 4 years, 4 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 | « experimental/svg/model/SkSVGValue.cpp ('k') | 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': 'svg', 8 'target_name': 'svg',
9 'product_name': 'skia_svg', 9 'product_name': 'skia_svg',
10 'type': 'static_library', 10 'type': 'static_library',
(...skipping 28 matching lines...) Expand all
39 'skia_lib.gyp:skia_lib', 39 'skia_lib.gyp:skia_lib',
40 'xml.gyp:xml', 40 'xml.gyp:xml',
41 ], 41 ],
42 'include_dirs': [ 42 'include_dirs': [
43 '<(skia_include_path)/private', 43 '<(skia_include_path)/private',
44 '../experimental/svg/model', 44 '../experimental/svg/model',
45 ], 45 ],
46 'sources': [ 46 'sources': [
47 '../experimental/svg/model/SkSVGAttribute.h', 47 '../experimental/svg/model/SkSVGAttribute.h',
48 '../experimental/svg/model/SkSVGAttribute.cpp', 48 '../experimental/svg/model/SkSVGAttribute.cpp',
49 '../experimental/svg/model/SkSVGAttributeParser.h',
50 '../experimental/svg/model/SkSVGAttributeParser.cpp',
49 '../experimental/svg/model/SkSVGContainer.h', 51 '../experimental/svg/model/SkSVGContainer.h',
50 '../experimental/svg/model/SkSVGContainer.cpp', 52 '../experimental/svg/model/SkSVGContainer.cpp',
51 '../experimental/svg/model/SkSVGDOM.h', 53 '../experimental/svg/model/SkSVGDOM.h',
52 '../experimental/svg/model/SkSVGDOM.cpp', 54 '../experimental/svg/model/SkSVGDOM.cpp',
53 '../experimental/svg/model/SkSVGG.h', 55 '../experimental/svg/model/SkSVGG.h',
54 '../experimental/svg/model/SkSVGNode.h', 56 '../experimental/svg/model/SkSVGNode.h',
55 '../experimental/svg/model/SkSVGNode.cpp', 57 '../experimental/svg/model/SkSVGNode.cpp',
56 '../experimental/svg/model/SkSVGPath.h', 58 '../experimental/svg/model/SkSVGPath.h',
57 '../experimental/svg/model/SkSVGPath.cpp', 59 '../experimental/svg/model/SkSVGPath.cpp',
60 '../experimental/svg/model/SkSVGRect.h',
61 '../experimental/svg/model/SkSVGRect.cpp',
58 '../experimental/svg/model/SkSVGRenderContext.h', 62 '../experimental/svg/model/SkSVGRenderContext.h',
59 '../experimental/svg/model/SkSVGRenderContext.cpp', 63 '../experimental/svg/model/SkSVGRenderContext.cpp',
64 '../experimental/svg/model/SkSVGShape.h',
65 '../experimental/svg/model/SkSVGShape.cpp',
60 '../experimental/svg/model/SkSVGSVG.h', 66 '../experimental/svg/model/SkSVGSVG.h',
61 '../experimental/svg/model/SkSVGSVG.cpp', 67 '../experimental/svg/model/SkSVGSVG.cpp',
62 '../experimental/svg/model/SkSVGTransformableNode.h', 68 '../experimental/svg/model/SkSVGTransformableNode.h',
63 '../experimental/svg/model/SkSVGTransformableNode.cpp', 69 '../experimental/svg/model/SkSVGTransformableNode.cpp',
70 '../experimental/svg/model/SkSVGTypes.h',
64 '../experimental/svg/model/SkSVGValue.h', 71 '../experimental/svg/model/SkSVGValue.h',
65 '../experimental/svg/model/SkSVGValue.cpp', 72 '../experimental/svg/model/SkSVGValue.cpp',
66 ], 73 ],
67 'direct_dependent_settings': { 74 'direct_dependent_settings': {
68 'include_dirs': [ 75 'include_dirs': [
69 '../experimental/svg/model', 76 '../experimental/svg/model',
70 ], 77 ],
71 }, 78 },
72 }, 79 },
73 80
74 ], 81 ],
75 } 82 }
OLDNEW
« no previous file with comments | « experimental/svg/model/SkSVGValue.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698