OLD | NEW |
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 30 matching lines...) Expand all Loading... |
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', | 49 '../experimental/svg/model/SkSVGAttributeParser.h', |
50 '../experimental/svg/model/SkSVGAttributeParser.cpp', | 50 '../experimental/svg/model/SkSVGAttributeParser.cpp', |
| 51 '../experimental/svg/model/SkSVGCircle.h', |
| 52 '../experimental/svg/model/SkSVGCircle.cpp', |
51 '../experimental/svg/model/SkSVGContainer.h', | 53 '../experimental/svg/model/SkSVGContainer.h', |
52 '../experimental/svg/model/SkSVGContainer.cpp', | 54 '../experimental/svg/model/SkSVGContainer.cpp', |
53 '../experimental/svg/model/SkSVGDOM.h', | 55 '../experimental/svg/model/SkSVGDOM.h', |
54 '../experimental/svg/model/SkSVGDOM.cpp', | 56 '../experimental/svg/model/SkSVGDOM.cpp', |
| 57 '../experimental/svg/model/SkSVGEllipse.h', |
| 58 '../experimental/svg/model/SkSVGEllipse.cpp', |
55 '../experimental/svg/model/SkSVGG.h', | 59 '../experimental/svg/model/SkSVGG.h', |
56 '../experimental/svg/model/SkSVGNode.h', | 60 '../experimental/svg/model/SkSVGNode.h', |
57 '../experimental/svg/model/SkSVGNode.cpp', | 61 '../experimental/svg/model/SkSVGNode.cpp', |
58 '../experimental/svg/model/SkSVGPath.h', | 62 '../experimental/svg/model/SkSVGPath.h', |
59 '../experimental/svg/model/SkSVGPath.cpp', | 63 '../experimental/svg/model/SkSVGPath.cpp', |
60 '../experimental/svg/model/SkSVGPoly.h', | 64 '../experimental/svg/model/SkSVGPoly.h', |
61 '../experimental/svg/model/SkSVGPoly.cpp', | 65 '../experimental/svg/model/SkSVGPoly.cpp', |
62 '../experimental/svg/model/SkSVGRect.h', | 66 '../experimental/svg/model/SkSVGRect.h', |
63 '../experimental/svg/model/SkSVGRect.cpp', | 67 '../experimental/svg/model/SkSVGRect.cpp', |
64 '../experimental/svg/model/SkSVGRenderContext.h', | 68 '../experimental/svg/model/SkSVGRenderContext.h', |
(...skipping 10 matching lines...) Expand all Loading... |
75 ], | 79 ], |
76 'direct_dependent_settings': { | 80 'direct_dependent_settings': { |
77 'include_dirs': [ | 81 'include_dirs': [ |
78 '../experimental/svg/model', | 82 '../experimental/svg/model', |
79 ], | 83 ], |
80 }, | 84 }, |
81 }, | 85 }, |
82 | 86 |
83 ], | 87 ], |
84 } | 88 } |
OLD | NEW |