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', | |
25 '../include/ports', | 24 '../include/ports', |
26 '../include/private', | 25 '../include/private', |
27 '../include/utils', | 26 '../include/utils', |
28 '../include/images', | 27 '../include/images', |
29 '../src/core', | 28 '../src/core', |
30 '../src/sfnt', | 29 '../src/sfnt', |
31 '../src/image', | 30 '../src/image', |
32 '../src/opts', | 31 '../src/opts', |
33 '../src/utils', | 32 '../src/utils', |
34 ], | 33 ], |
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
101 '../src/gpu', | 100 '../src/gpu', |
102 ], | 101 ], |
103 }], | 102 }], |
104 ], | 103 ], |
105 'direct_dependent_settings': { | 104 'direct_dependent_settings': { |
106 'include_dirs': [ | 105 'include_dirs': [ |
107 '../include/c', | 106 '../include/c', |
108 '../include/config', | 107 '../include/config', |
109 '../include/core', | 108 '../include/core', |
110 '../include/pathops', | 109 '../include/pathops', |
111 '../include/pipe', | |
112 ], | 110 ], |
113 'conditions': [ | 111 'conditions': [ |
114 [ 'skia_os == "mac"', { | 112 [ 'skia_os == "mac"', { |
115 'include_dirs': [ | 113 'include_dirs': [ |
116 '../include/utils/mac', | 114 '../include/utils/mac', |
117 ], | 115 ], |
118 }], | 116 }], |
119 [ 'skia_os == "ios"', { | 117 [ 'skia_os == "ios"', { |
120 'include_dirs': [ | 118 'include_dirs': [ |
121 '../include/utils/ios', | 119 '../include/utils/ios', |
122 ], | 120 ], |
123 }], | 121 }], |
124 [ 'skia_os == "win"', { | 122 [ 'skia_os == "win"', { |
125 'include_dirs': [ | 123 'include_dirs': [ |
126 'config/win', | 124 'config/win', |
127 ], | 125 ], |
128 }], | 126 }], |
129 ], | 127 ], |
130 }, | 128 }, |
131 }, | 129 }, |
132 ], | 130 ], |
133 } | 131 } |
OLD | NEW |