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 '../src/core', |
16 '../src/sfnt', | 17 '../src/sfnt', |
17 ], | 18 ], |
18 'sources': [ | 19 'sources': [ |
19 '../src/sfnt/SkIBMFamilyClass.h', | 20 '../src/sfnt/SkIBMFamilyClass.h', |
20 '../src/sfnt/SkOTTableTypes.h', | 21 '../src/sfnt/SkOTTableTypes.h', |
21 '../src/sfnt/SkOTTable_EBDT.h', | 22 '../src/sfnt/SkOTTable_EBDT.h', |
22 '../src/sfnt/SkOTTable_EBLC.h', | 23 '../src/sfnt/SkOTTable_EBLC.h', |
23 '../src/sfnt/SkOTTable_EBSC.h', | 24 '../src/sfnt/SkOTTable_EBSC.h', |
24 '../src/sfnt/SkOTTable_gasp.h', | 25 '../src/sfnt/SkOTTable_gasp.h', |
25 '../src/sfnt/SkOTTable_glyf.h', | 26 '../src/sfnt/SkOTTable_glyf.h', |
(...skipping 23 matching lines...) Expand all Loading... |
49 '../src/sfnt/SkOTUtils.cpp', | 50 '../src/sfnt/SkOTUtils.cpp', |
50 ], | 51 ], |
51 'direct_dependent_settings': { | 52 'direct_dependent_settings': { |
52 'include_dirs': [ | 53 'include_dirs': [ |
53 '../src/sfnt', | 54 '../src/sfnt', |
54 ], | 55 ], |
55 }, | 56 }, |
56 }, | 57 }, |
57 ], | 58 ], |
58 } | 59 } |
OLD | NEW |