OLD | NEW |
---|---|
(Empty) | |
1 # Copyright 2014 Google Inc. | |
2 # Use of this source code is governed by a BSD-style license that can be | |
3 # found in the LICENSE file. | |
4 | |
5 { | |
6 'targets': [ | |
7 { | |
8 'target_name': 'sk_tool_utils', | |
mtklein
2014/06/20 01:05:24
Can this also not go in tools.gyp?
tfarina
2014/06/20 02:37:37
No, it creates a circular dependency. tools.gyp al
| |
9 'type': 'static_library', | |
10 'sources': [ | |
11 '../tools/sk_tool_utils.cpp', | |
12 '../tools/sk_tool_utils.h', | |
13 ], | |
14 'dependencies': [ | |
15 'skia_lib.gyp:skia_lib', | |
16 ], | |
17 'direct_dependent_settings': { | |
18 'include_dirs': [ | |
19 '../tools/', | |
20 ], | |
21 }, | |
22 }, | |
23 ] | |
24 } | |
OLD | NEW |