Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(220)

Side by Side Diff: skia/skia_library.gypi

Issue 71043002: Try a different arbitrary SkGlyphCache cap (64 -> 256) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698