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': 'json', | 8 'target_name': 'json', |
9 'product_name': 'skia_json', | 9 'product_name': 'skia_json', |
10 'type': 'static_library', | 10 'type': 'static_library', |
11 'standalone_static_library': 1, | 11 'standalone_static_library': 1, |
12 'dependencies': [ | 12 'dependencies': [ |
13 'core.gyp:core', | 13 'core.gyp:core', |
14 'jsoncpp.gyp:jsoncpp', | 14 'jsoncpp.gyp:jsoncpp', |
15 ], | 15 ], |
16 'include_dirs': [ | 16 'include_dirs': [ |
| 17 '../include/core', |
| 18 '../include/effects', |
17 '../include/utils', | 19 '../include/utils', |
18 '../src/core', | 20 '../src/core', |
19 ], | 21 ], |
20 'sources': [ | 22 'sources': [ |
21 '../tools/json/SkJSONCanvas.cpp', | 23 '../tools/json/SkJSONCanvas.cpp', |
22 '../tools/json/SkJSONRenderer.cpp', | 24 '../tools/json/SkJSONRenderer.cpp', |
23 ], | 25 ], |
24 }, | 26 }, |
25 ], | 27 ], |
26 } | 28 } |
OLD | NEW |