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 # Core Skia library code. | 5 # Core Skia library code. |
6 { | 6 { |
7 'targets': [ | 7 'targets': [ |
8 { | 8 { |
9 'target_name': 'core', | 9 'target_name': 'core', |
10 'product_name': 'skia_core', | 10 'product_name': 'skia_core', |
11 'type': 'static_library', | 11 'type': 'static_library', |
12 'standalone_static_library': 1, | 12 'standalone_static_library': 1, |
13 'msvs_guid': 'B7760B5E-BFA8-486B-ACFD-49E3A6DE8E76', | 13 'msvs_guid': 'B7760B5E-BFA8-486B-ACFD-49E3A6DE8E76', |
14 | 14 |
15 'includes': [ | 15 'includes': [ |
16 'core.gypi', | 16 'core.gypi', |
17 ], | 17 ], |
18 | 18 |
19 'include_dirs': [ | 19 'include_dirs': [ |
20 '../include/c', | 20 '../include/c', |
21 '../include/config', | 21 '../include/config', |
22 '../include/core', | 22 '../include/core', |
23 '../include/pathops', | 23 '../include/pathops', |
24 '../include/pipe', | 24 '../include/pipe', |
25 '../include/ports', | 25 '../include/ports', |
| 26 '../include/private', |
26 '../include/utils', | 27 '../include/utils', |
27 '../include/images', | 28 '../include/images', |
28 '../src/core', | 29 '../src/core', |
29 '../src/sfnt', | 30 '../src/sfnt', |
30 '../src/image', | 31 '../src/image', |
31 '../src/opts', | 32 '../src/opts', |
32 '../src/utils', | 33 '../src/utils', |
33 ], | 34 ], |
34 'sources': [ | 35 'sources': [ |
35 'core.gypi', # Makes the gypi appear in IDEs (but does not modify the bu
ild). | 36 'core.gypi', # Makes the gypi appear in IDEs (but does not modify the bu
ild). |
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
123 [ 'skia_os == "win"', { | 124 [ 'skia_os == "win"', { |
124 'include_dirs': [ | 125 'include_dirs': [ |
125 'config/win', | 126 'config/win', |
126 ], | 127 ], |
127 }], | 128 }], |
128 ], | 129 ], |
129 }, | 130 }, |
130 }, | 131 }, |
131 ], | 132 ], |
132 } | 133 } |
OLD | NEW |