OLD | NEW |
---|---|
(Empty) | |
1 # Copyright 2013 The Chromium Authors. All rights reserved. | |
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 # This gypi file contains the shim header generation and other settings to use | |
7 # the system version of skia on Android. | |
8 { | |
9 'direct_dependent_settings': { | |
10 # This makes the Android build system set the include path appropriately. | |
11 'libraries': [ '-lskia' ], | |
12 }, | |
13 'link_settings': { | |
14 # This actually causes the final binary to be linked against skia. | |
15 'libraries': [ '-lskia' ], | |
16 }, | |
17 'variables': { | |
18 'headers_root_path': '../third_party/skia/include', | |
19 }, | |
20 'includes': [ | |
21 '../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
| |
22 '../build/shim_headers.gypi', | |
23 ], | |
24 } | |
OLD | NEW |