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', |
11 'standalone_static_library': 1, | 11 'standalone_static_library': 1, |
12 'dependencies': [ | 12 'dependencies': [ |
13 'skia_lib.gyp:skia_lib', | 13 'skia_lib.gyp:skia_lib', |
14 'xml.gyp:*', | 14 'xml.gyp:*', |
15 ], | 15 ], |
16 'include_dirs': [ | 16 'include_dirs': [ |
17 '../include/private', | |
18 '../include/svg', | 17 '../include/svg', |
19 '../src/core', | 18 '../src/core', |
20 ], | 19 ], |
21 'sources': [ | 20 'sources': [ |
22 '<(skia_include_path)/svg/SkSVGCanvas.h', | 21 '<(skia_include_path)/svg/SkSVGCanvas.h', |
23 | 22 |
24 '<(skia_src_path)/svg/SkSVGCanvas.cpp', | 23 '<(skia_src_path)/svg/SkSVGCanvas.cpp', |
25 '<(skia_src_path)/svg/SkSVGDevice.cpp', | 24 '<(skia_src_path)/svg/SkSVGDevice.cpp', |
26 '<(skia_src_path)/svg/SkSVGDevice.h', | 25 '<(skia_src_path)/svg/SkSVGDevice.h', |
27 ], | 26 ], |
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
106 '../src/svg/parser/SkSVG.cpp', # doesn't compile, maybe this is test c
ode? | 105 '../src/svg/parser/SkSVG.cpp', # doesn't compile, maybe this is test c
ode? |
107 ], | 106 ], |
108 'direct_dependent_settings': { | 107 'direct_dependent_settings': { |
109 'include_dirs': [ | 108 'include_dirs': [ |
110 '../include/svg/parser', | 109 '../include/svg/parser', |
111 ], | 110 ], |
112 }, | 111 }, |
113 }, | 112 }, |
114 ], | 113 ], |
115 } | 114 } |
OLD | NEW |