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