scroggo | 3e56227 | 2015-03-25 10:22:41 -0700 | [diff] [blame] | 1 | # Copyright 2015 Google Inc. |
| 2 | # |
| 3 | # Use of this source code is governed by a BSD-style license that can be |
| 4 | # found in the LICENSE file. |
epoger@google.com | ae85aea | 2011-05-31 13:50:51 +0000 | [diff] [blame] | 5 | { |
epoger@google.com | ae85aea | 2011-05-31 13:50:51 +0000 | [diff] [blame] | 6 | 'targets': [ |
| 7 | { |
| 8 | 'target_name': 'svg', |
borenet@google.com | efb1d77 | 2012-10-10 19:45:51 +0000 | [diff] [blame] | 9 | 'product_name': 'skia_svg', |
epoger@google.com | ae85aea | 2011-05-31 13:50:51 +0000 | [diff] [blame] | 10 | 'type': 'static_library', |
borenet@google.com | efb1d77 | 2012-10-10 19:45:51 +0000 | [diff] [blame] | 11 | 'standalone_static_library': 1, |
bungeman@google.com | b8f3655 | 2013-07-22 14:39:45 +0000 | [diff] [blame] | 12 | 'dependencies': [ |
| 13 | 'skia_lib.gyp:skia_lib', |
| 14 | 'xml.gyp:*', |
| 15 | ], |
epoger@google.com | ae85aea | 2011-05-31 13:50:51 +0000 | [diff] [blame] | 16 | 'include_dirs': [ |
mtklein | cd1f2da | 2015-07-28 08:55:14 -0700 | [diff] [blame] | 17 | '../include/private', |
fmalita | 2aafe6f | 2015-02-06 12:51:10 -0800 | [diff] [blame] | 18 | '../include/svg', |
fmalita | f89f60f | 2015-02-13 08:55:24 -0800 | [diff] [blame] | 19 | '../src/core', |
fmalita | 2aafe6f | 2015-02-06 12:51:10 -0800 | [diff] [blame] | 20 | ], |
| 21 | 'sources': [ |
| 22 | '<(skia_include_path)/svg/SkSVGCanvas.h', |
| 23 | |
| 24 | '<(skia_src_path)/svg/SkSVGCanvas.cpp', |
| 25 | '<(skia_src_path)/svg/SkSVGDevice.cpp', |
| 26 | '<(skia_src_path)/svg/SkSVGDevice.h', |
| 27 | ], |
| 28 | 'direct_dependent_settings': { |
| 29 | 'include_dirs': [ |
| 30 | '../include/svg', |
| 31 | ], |
| 32 | }, |
| 33 | }, |
fmalita | 6ceef3d | 2016-07-26 18:46:34 -0700 | [diff] [blame] | 34 | { |
| 35 | 'target_name': 'svgdom', |
| 36 | 'type': 'static_library', |
| 37 | 'standalone_static_library': 1, |
| 38 | 'dependencies': [ |
| 39 | 'skia_lib.gyp:skia_lib', |
| 40 | 'xml.gyp:xml', |
| 41 | ], |
| 42 | 'include_dirs': [ |
| 43 | '<(skia_include_path)/private', |
| 44 | '../experimental/svg/model', |
| 45 | ], |
| 46 | 'sources': [ |
| 47 | '../experimental/svg/model/SkSVGAttribute.h', |
| 48 | '../experimental/svg/model/SkSVGAttribute.cpp', |
fmalita | bffc256 | 2016-08-03 10:21:11 -0700 | [diff] [blame] | 49 | '../experimental/svg/model/SkSVGAttributeParser.h', |
| 50 | '../experimental/svg/model/SkSVGAttributeParser.cpp', |
fmalita | 6ceef3d | 2016-07-26 18:46:34 -0700 | [diff] [blame] | 51 | '../experimental/svg/model/SkSVGContainer.h', |
| 52 | '../experimental/svg/model/SkSVGContainer.cpp', |
| 53 | '../experimental/svg/model/SkSVGDOM.h', |
| 54 | '../experimental/svg/model/SkSVGDOM.cpp', |
| 55 | '../experimental/svg/model/SkSVGG.h', |
| 56 | '../experimental/svg/model/SkSVGNode.h', |
| 57 | '../experimental/svg/model/SkSVGNode.cpp', |
| 58 | '../experimental/svg/model/SkSVGPath.h', |
| 59 | '../experimental/svg/model/SkSVGPath.cpp', |
fmalita | 5b31f32 | 2016-08-12 12:15:33 -0700 | [diff] [blame] | 60 | '../experimental/svg/model/SkSVGPoly.h', |
| 61 | '../experimental/svg/model/SkSVGPoly.cpp', |
fmalita | bffc256 | 2016-08-03 10:21:11 -0700 | [diff] [blame] | 62 | '../experimental/svg/model/SkSVGRect.h', |
| 63 | '../experimental/svg/model/SkSVGRect.cpp', |
fmalita | 6ceef3d | 2016-07-26 18:46:34 -0700 | [diff] [blame] | 64 | '../experimental/svg/model/SkSVGRenderContext.h', |
| 65 | '../experimental/svg/model/SkSVGRenderContext.cpp', |
fmalita | bffc256 | 2016-08-03 10:21:11 -0700 | [diff] [blame] | 66 | '../experimental/svg/model/SkSVGShape.h', |
| 67 | '../experimental/svg/model/SkSVGShape.cpp', |
fmalita | 6ceef3d | 2016-07-26 18:46:34 -0700 | [diff] [blame] | 68 | '../experimental/svg/model/SkSVGSVG.h', |
| 69 | '../experimental/svg/model/SkSVGSVG.cpp', |
| 70 | '../experimental/svg/model/SkSVGTransformableNode.h', |
| 71 | '../experimental/svg/model/SkSVGTransformableNode.cpp', |
fmalita | bffc256 | 2016-08-03 10:21:11 -0700 | [diff] [blame] | 72 | '../experimental/svg/model/SkSVGTypes.h', |
fmalita | 6ceef3d | 2016-07-26 18:46:34 -0700 | [diff] [blame] | 73 | '../experimental/svg/model/SkSVGValue.h', |
| 74 | '../experimental/svg/model/SkSVGValue.cpp', |
| 75 | ], |
| 76 | 'direct_dependent_settings': { |
| 77 | 'include_dirs': [ |
| 78 | '../experimental/svg/model', |
| 79 | ], |
| 80 | }, |
| 81 | }, |
| 82 | |
epoger@google.com | ae85aea | 2011-05-31 13:50:51 +0000 | [diff] [blame] | 83 | ], |
| 84 | } |