OLD | NEW |
1 # Copyright 2015 Google Inc. | 1 # Copyright 2015 Google Inc. |
2 # | 2 # |
3 # Use of this source code is governed by a BSD-style license that can be | 3 # Use of this source code is governed by a BSD-style license that can be |
4 # found in the LICENSE file. | 4 # found in the LICENSE file. |
5 { | 5 { |
6 'targets': [ | 6 'targets': [ |
7 { | 7 { |
8 'target_name': 'sfnt', | 8 'target_name': 'sfnt', |
9 'product_name': 'skia_sfnt', | 9 'product_name': 'skia_sfnt', |
10 'type': 'static_library', | 10 'type': 'static_library', |
11 'standalone_static_library': 1, | 11 'standalone_static_library': 1, |
12 'dependencies': [ | 12 'dependencies': [ |
13 'core.gyp:*', | 13 'core.gyp:*', |
14 ], | 14 ], |
15 'include_dirs': [ | 15 'include_dirs': [ |
| 16 '../include/private', |
16 '../src/core', | 17 '../src/core', |
17 '../src/sfnt', | 18 '../src/sfnt', |
18 ], | 19 ], |
19 'sources': [ | 20 'sources': [ |
20 '../src/sfnt/SkIBMFamilyClass.h', | 21 '../src/sfnt/SkIBMFamilyClass.h', |
21 '../src/sfnt/SkOTTableTypes.h', | 22 '../src/sfnt/SkOTTableTypes.h', |
22 '../src/sfnt/SkOTTable_EBDT.h', | 23 '../src/sfnt/SkOTTable_EBDT.h', |
23 '../src/sfnt/SkOTTable_EBLC.h', | 24 '../src/sfnt/SkOTTable_EBLC.h', |
24 '../src/sfnt/SkOTTable_EBSC.h', | 25 '../src/sfnt/SkOTTable_EBSC.h', |
25 '../src/sfnt/SkOTTable_gasp.h', | 26 '../src/sfnt/SkOTTable_gasp.h', |
(...skipping 24 matching lines...) Expand all Loading... |
50 '../src/sfnt/SkOTUtils.cpp', | 51 '../src/sfnt/SkOTUtils.cpp', |
51 ], | 52 ], |
52 'direct_dependent_settings': { | 53 'direct_dependent_settings': { |
53 'include_dirs': [ | 54 'include_dirs': [ |
54 '../src/sfnt', | 55 '../src/sfnt', |
55 ], | 56 ], |
56 }, | 57 }, |
57 }, | 58 }, |
58 ], | 59 ], |
59 } | 60 } |
OLD | NEW |