Chromium Code Reviews| Index: gyp/utils.gyp |
| diff --git a/gyp/utils.gyp b/gyp/utils.gyp |
| index 19816f88e4e6ef5a7ef05afab2af8f053241e4b2..af7841a9c08cc64d7e885ffe43a9a3ab462e3e87 100644 |
| --- a/gyp/utils.gyp |
| +++ b/gyp/utils.gyp |
| @@ -124,5 +124,23 @@ |
| ], |
| }, |
| }, |
| + { |
| + 'target_name': 'android_utils', |
| + 'product_name': 'skia_android_utils', |
| + 'type': 'static_library', |
| + 'standalone_static_library': 1, |
| + 'dependencies': [ |
| + 'core.gyp:*', |
| + ], |
| + 'include_dirs': [ |
| + '../include/core', |
|
mtklein
2015/03/23 17:49:02
This ought to come from depending on core.gyp:*.
tomhudson
2015/03/23 18:06:27
Done.
|
| + '../src/core', |
|
mtklein
2015/03/23 17:49:02
Looks like you don't use anything from src/core?
tomhudson
2015/03/23 18:06:27
Done.
|
| + '../src/utils/android', |
|
mtklein
2015/03/23 17:49:02
Probably don't need this, given its the sources' d
tomhudson
2015/03/23 18:06:27
Done.
|
| + ], |
| + 'sources': [ |
| + '../src/utils/android/SkAndroidSDKCanvas.h', |
| + '../src/utils/android/SkAndroidSDKCanvas.cpp', |
| + ], |
| + }, |
| ], |
| } |