Chromium Code Reviews| Index: gyp/utils.gyp |
| diff --git a/gyp/utils.gyp b/gyp/utils.gyp |
| index 19816f88e4e6ef5a7ef05afab2af8f053241e4b2..2f184c559badc6823dd13157aad2412013ca27fa 100644 |
| --- a/gyp/utils.gyp |
| +++ b/gyp/utils.gyp |
| @@ -124,5 +124,30 @@ |
| ], |
| }, |
| }, |
| + { |
| + 'target_name': 'android_utils', |
| + 'product_name': 'skia_android_utils', |
| + 'type': 'static_library', |
| + 'standalone_static_library': 1, |
| + 'dependencies': [ |
| + 'core.gyp:*', |
| + ], |
| + 'includes': [ |
| + 'android_utils.gypi', |
|
mtklein
2015/03/23 16:47:01
Unless you're planning on having these built into
|
| + ], |
| + 'include_dirs': [ |
| + '../include/core', |
| + '../include/utils/android', |
| + '../src/core', |
| + ], |
| + 'sources': [ |
| + 'android_utils.gypi', # Makes the gypi appear in IDEs (but does not modify the build). |
| + ], |
| + 'direct_dependent_settings': { |
| + 'include_dirs': [ |
| + '../include/utils/android', |
|
mtklein
2015/03/23 17:49:02
Don't you want to keep this, switched over to '../
tomhudson
2015/03/23 18:06:27
Done.
|
| + ], |
| + }, |
| + }, |
| ], |
| } |