| 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 423 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 | 443 |
| 444 # http://crbug.com/314387 |
| 445 'SK_DEFAULT_FONT_CACHE_COUNT_LIMIT=64', |
| 446 |
| 444 'SK_DISABLE_BLUR_DIVISION_OPTIMIZATION', | 447 'SK_DISABLE_BLUR_DIVISION_OPTIMIZATION', |
| 445 ], | 448 ], |
| 446 | 449 |
| 447 'direct_dependent_settings': { | 450 'direct_dependent_settings': { |
| 448 'include_dirs': [ | 451 'include_dirs': [ |
| 449 #temporary until we can hide SkFontHost | 452 #temporary until we can hide SkFontHost |
| 450 '../third_party/skia/src/core', | 453 '../third_party/skia/src/core', |
| 451 | 454 |
| 452 '../third_party/skia/include/core', | 455 '../third_party/skia/include/core', |
| 453 '../third_party/skia/include/effects', | 456 '../third_party/skia/include/effects', |
| 454 '../third_party/skia/include/pdf', | 457 '../third_party/skia/include/pdf', |
| 455 '../third_party/skia/include/gpu', | 458 '../third_party/skia/include/gpu', |
| 456 '../third_party/skia/include/lazy', | 459 '../third_party/skia/include/lazy', |
| 457 '../third_party/skia/include/pathops', | 460 '../third_party/skia/include/pathops', |
| 458 '../third_party/skia/include/pipe', | 461 '../third_party/skia/include/pipe', |
| 459 '../third_party/skia/include/ports', | 462 '../third_party/skia/include/ports', |
| 460 '../third_party/skia/include/utils', | 463 '../third_party/skia/include/utils', |
| 461 ], | 464 ], |
| 462 'defines': [ | 465 'defines': [ |
| 463 '<@(skia_export_defines)', | 466 '<@(skia_export_defines)', |
| 464 ], | 467 ], |
| 465 }, | 468 }, |
| 466 } | 469 } |
| OLD | NEW |