blob: 5b20b2961c323287880fdfcb37c062850e9b0329 [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',
ethannicholas978d08a2016-01-26 07:47:57 -080019 '../include/utils',
20 '../src/core',
21 ],
22 'sources': [
23 '../tools/json/SkJSONCanvas.cpp',
24 '../tools/json/SkJSONRenderer.cpp',
25 ],
26 },
27 ],
28}