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