OLD | NEW |
1 # Copyright 2013 The Chromium Authors. All rights reserved. | 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 | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 | 5 |
6 # This gypi file contains the Skia library. | 6 # This gypi file contains the Skia library. |
7 # In component mode (shared_lib) it is folded into a single shared library with | 7 # In component mode (shared_lib) it is folded into a single shared library with |
8 # the Chrome-specific enhancements but in all other cases it is a separate lib. | 8 # the Chrome-specific enhancements but in all other cases it is a separate lib. |
9 | 9 |
10 # !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!WARNING!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | 10 # !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!WARNING!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! |
(...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
198 'sources/': [ | 198 'sources/': [ |
199 ['exclude', '../third_party/skia/src/pdf/'] | 199 ['exclude', '../third_party/skia/src/pdf/'] |
200 ], | 200 ], |
201 }], | 201 }], |
202 ['skia_support_pdf == 1', { | 202 ['skia_support_pdf == 1', { |
203 'dependencies': [ | 203 'dependencies': [ |
204 '../third_party/sfntly/sfntly.gyp:sfntly', | 204 '../third_party/sfntly/sfntly.gyp:sfntly', |
205 ], | 205 ], |
206 }], | 206 }], |
207 | 207 |
208 [ 'OS != "ios"', { | |
209 'dependencies': [ | |
210 '../third_party/WebKit/public/blink_skia_config.gyp:blink_skia_config', | |
211 ], | |
212 'export_dependent_settings': [ | |
213 '../third_party/WebKit/public/blink_skia_config.gyp:blink_skia_config', | |
214 ], | |
215 }], | |
216 [ 'OS != "mac"', { | 208 [ 'OS != "mac"', { |
217 'sources/': [ | 209 'sources/': [ |
218 ['exclude', '/mac/'] | 210 ['exclude', '/mac/'] |
219 ], | 211 ], |
220 }], | 212 }], |
221 [ 'OS == "android" and target_arch == "arm"', { | 213 [ 'OS == "android" and target_arch == "arm"', { |
222 'sources': [ | 214 'sources': [ |
223 '../third_party/skia/src/core/SkUtilsArm.cpp', | 215 '../third_party/skia/src/core/SkUtilsArm.cpp', |
224 ], | 216 ], |
225 'includes': [ | 217 'includes': [ |
(...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
375 '../third_party/skia/include/pdf', | 367 '../third_party/skia/include/pdf', |
376 '../third_party/skia/include/gpu', | 368 '../third_party/skia/include/gpu', |
377 '../third_party/skia/include/lazy', | 369 '../third_party/skia/include/lazy', |
378 '../third_party/skia/include/pathops', | 370 '../third_party/skia/include/pathops', |
379 '../third_party/skia/include/pipe', | 371 '../third_party/skia/include/pipe', |
380 '../third_party/skia/include/ports', | 372 '../third_party/skia/include/ports', |
381 '../third_party/skia/include/utils', | 373 '../third_party/skia/include/utils', |
382 ], | 374 ], |
383 }, | 375 }, |
384 } | 376 } |
OLD | NEW |