Chromium Code Reviews| Index: gyp/sk_tool_utils.gyp |
| diff --git a/gyp/sk_tool_utils.gyp b/gyp/sk_tool_utils.gyp |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..26c9e7d15aef1280fe6ad256ea23bd4b77939292 |
| --- /dev/null |
| +++ b/gyp/sk_tool_utils.gyp |
| @@ -0,0 +1,24 @@ |
| +# Copyright 2014 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': '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
|
| + 'type': 'static_library', |
| + 'sources': [ |
| + '../tools/sk_tool_utils.cpp', |
| + '../tools/sk_tool_utils.h', |
| + ], |
| + 'dependencies': [ |
| + 'skia_lib.gyp:skia_lib', |
| + ], |
| + 'direct_dependent_settings': { |
| + 'include_dirs': [ |
| + '../tools/', |
| + ], |
| + }, |
| + }, |
| + ] |
| +} |