blob: 707e22511588dbf657eb7ab3bfceb8e098d15a9e [file] [log] [blame]
ethannicholas978d08a2016-01-26 07:47:57 -08001# 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': 'json',
9 'product_name': 'skia_json',
10 'type': 'static_library',
11 'standalone_static_library': 1,
12 'dependencies': [
13 'core.gyp:core',
14 'jsoncpp.gyp:jsoncpp',
15 ],
16 'include_dirs': [
ethannicholas78fc22a2016-01-29 07:15:08 -080017 '../include/core',
18 '../include/effects',
ethannicholas30c5dde2016-02-02 08:36:58 -080019 '../include/private',
ethannicholas978d08a2016-01-26 07:47:57 -080020 '../include/utils',
21 '../src/core',
22 ],
23 'sources': [
24 '../tools/json/SkJSONCanvas.cpp',
25 '../tools/json/SkJSONRenderer.cpp',
26 ],
27 },
28 ],
29}