| 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': 'xml', | 8 'target_name': 'xml', |
| 9 'product_name': 'skia_xml', | 9 'product_name': 'skia_xml', |
| 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 'expat.gyp:expat', |
| 14 ], | 15 ], |
| 15 'include_dirs': [ | 16 'include_dirs': [ |
| 16 '../include/private', | 17 '<(skia_include_path)/private', |
| 17 '../include/xml', | 18 '<(skia_include_path)/xml', |
| 18 ], | 19 ], |
| 19 'sources': [ | 20 'sources': [ |
| 20 '../include/xml/SkDOM.h', | 21 '<(skia_include_path)/xml/SkDOM.h', |
| 21 '../include/xml/SkXMLParser.h', | 22 '<(skia_include_path)/xml/SkXMLParser.h', |
| 22 '../include/xml/SkXMLWriter.h', | 23 '<(skia_include_path)/xml/SkXMLWriter.h', |
| 23 | 24 |
| 24 '../src/xml/SkDOM.cpp', | 25 '<(skia_src_path)/xml/SkDOM.cpp', |
| 25 '../src/xml/SkXMLParser.cpp', | 26 '<(skia_src_path)/xml/SkXMLParser.cpp', |
| 26 '../src/xml/SkXMLPullParser.cpp', | 27 '<(skia_src_path)/xml/SkXMLPullParser.cpp', |
| 27 '../src/xml/SkXMLWriter.cpp', | 28 '<(skia_src_path)/xml/SkXMLWriter.cpp', |
| 28 ], | 29 ], |
| 29 'sources!': [ | 30 'sources!': [ |
| 30 '../src/xml/SkXMLPullParser.cpp', #if 0 around class decl in header | 31 # time to kill this? |
| 32 '<(skia_src_path)/xml/SkXMLPullParser.cpp', #if 0 around class decl in
header |
| 31 ], | 33 ], |
| 32 'direct_dependent_settings': { | 34 'direct_dependent_settings': { |
| 33 'include_dirs': [ | 35 'include_dirs': [ |
| 34 '../include/xml', | 36 '../include/xml', |
| 35 ], | 37 ], |
| 36 }, | 38 }, |
| 37 }, | 39 }, |
| 38 ], | 40 ], |
| 39 } | 41 } |
| OLD | NEW |