aboutsummaryrefslogtreecommitdiffhomepage
path: root/gyp/json.gyp
blob: 707e22511588dbf657eb7ab3bfceb8e098d15a9e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# Copyright 2015 Google Inc.
#
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
{
  'targets': [
    {
      'target_name': 'json',
      'product_name': 'skia_json',
      'type': 'static_library',
      'standalone_static_library': 1,
      'dependencies': [
        'core.gyp:core',
        'jsoncpp.gyp:jsoncpp',
      ],
      'include_dirs': [
        '../include/core',
        '../include/effects',
        '../include/private',
        '../include/utils',
        '../src/core',
      ],
      'sources': [
        '../tools/json/SkJSONCanvas.cpp',
        '../tools/json/SkJSONRenderer.cpp',
      ],
    },
  ],
}