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 'dependencies': [ | 10 'dependencies': [ |
(...skipping 422 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
433 'IGNORE_ROT_AA_RECT_OPT', | 433 'IGNORE_ROT_AA_RECT_OPT', |
434 | 434 |
435 'SK_IGNORE_QUAD_RR_CORNERS_OPT', | 435 'SK_IGNORE_QUAD_RR_CORNERS_OPT', |
436 | 436 |
437 'SKIA_IGNORE_GPU_MIPMAPS', | 437 'SKIA_IGNORE_GPU_MIPMAPS', |
438 | 438 |
439 # this flag forces Skia not to use typographic metrics with GDI. | 439 # this flag forces Skia not to use typographic metrics with GDI. |
440 'SK_GDI_ALWAYS_USE_TEXTMETRICS_FOR_FONT_METRICS', | 440 'SK_GDI_ALWAYS_USE_TEXTMETRICS_FOR_FONT_METRICS', |
441 | 441 |
442 'SK_DEFAULT_FONT_CACHE_LIMIT=<(default_font_cache_limit)', | 442 'SK_DEFAULT_FONT_CACHE_LIMIT=<(default_font_cache_limit)', |
| 443 |
| 444 'SK_DISABLE_BLUR_DIVISION_OPTIMIZATION', |
443 ], | 445 ], |
444 | 446 |
445 'direct_dependent_settings': { | 447 'direct_dependent_settings': { |
446 'include_dirs': [ | 448 'include_dirs': [ |
447 #temporary until we can hide SkFontHost | 449 #temporary until we can hide SkFontHost |
448 '../third_party/skia/src/core', | 450 '../third_party/skia/src/core', |
449 | 451 |
450 '../third_party/skia/include/core', | 452 '../third_party/skia/include/core', |
451 '../third_party/skia/include/effects', | 453 '../third_party/skia/include/effects', |
452 '../third_party/skia/include/pdf', | 454 '../third_party/skia/include/pdf', |
453 '../third_party/skia/include/gpu', | 455 '../third_party/skia/include/gpu', |
454 '../third_party/skia/include/lazy', | 456 '../third_party/skia/include/lazy', |
455 '../third_party/skia/include/pathops', | 457 '../third_party/skia/include/pathops', |
456 '../third_party/skia/include/pipe', | 458 '../third_party/skia/include/pipe', |
457 '../third_party/skia/include/ports', | 459 '../third_party/skia/include/ports', |
458 '../third_party/skia/include/utils', | 460 '../third_party/skia/include/utils', |
459 ], | 461 ], |
460 'defines': [ | 462 'defines': [ |
461 '<@(skia_export_defines)', | 463 '<@(skia_export_defines)', |
462 ], | 464 ], |
463 }, | 465 }, |
464 } | 466 } |
OLD | NEW |