• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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.
5{
6  'targets': [
7    {
8      'target_name': 'xml',
9      'product_name': 'skia_xml',
10      'type': 'static_library',
11      'standalone_static_library': 1,
12      'dependencies': [
13        'skia_lib.gyp:skia_lib',
14      ],
15      'include_dirs': [
16        '../include/private',
17        '../include/xml',
18      ],
19      'sources': [
20        '../include/xml/SkBML_WXMLParser.h',
21        '../include/xml/SkBML_XMLParser.h',
22        '../include/xml/SkDOM.h',
23        '../include/xml/SkXMLParser.h',
24        '../include/xml/SkXMLWriter.h',
25
26        '../src/xml/SkBML_Verbs.h',
27        '../src/xml/SkBML_XMLParser.cpp',
28        '../src/xml/SkDOM.cpp',
29        '../src/xml/SkXMLParser.cpp',
30        '../src/xml/SkXMLPullParser.cpp',
31        '../src/xml/SkXMLWriter.cpp',
32      ],
33      'sources!': [
34          '../src/xml/SkXMLPullParser.cpp', #if 0 around class decl in header
35      ],
36      'direct_dependent_settings': {
37        'include_dirs': [
38          '../include/xml',
39        ],
40      },
41    },
42  ],
43}
44