Chromium Code Reviews| Index: skia/skia_system.gypi |
| diff --git a/skia/skia_system.gypi b/skia/skia_system.gypi |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..9884a23207315129cd0c1260bb624694c696f88b |
| --- /dev/null |
| +++ b/skia/skia_system.gypi |
| @@ -0,0 +1,24 @@ |
| +# Copyright 2013 The Chromium Authors. All rights reserved. |
| +# Use of this source code is governed by a BSD-style license that can be |
| +# found in the LICENSE file. |
| + |
| + |
| +# This gypi file contains the shim header generation and other settings to use |
| +# the system version of skia on Android. |
| +{ |
| + 'direct_dependent_settings': { |
| + # This makes the Android build system set the include path appropriately. |
| + 'libraries': [ '-lskia' ], |
| + }, |
| + 'link_settings': { |
| + # This actually causes the final binary to be linked against skia. |
| + 'libraries': [ '-lskia' ], |
| + }, |
| + 'variables': { |
| + 'headers_root_path': '../third_party/skia/include', |
| + }, |
| + 'includes': [ |
| + '../third_party/skia/gyp/exported_api_headers.gypi', |
|
djsollen
2013/08/09 15:47:17
robert, you will need to update this when you do t
|
| + '../build/shim_headers.gypi', |
| + ], |
| +} |