diff options
author | mostynb@opera.com <mostynb@opera.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-10-25 11:04:13 +0000 |
---|---|---|
committer | mostynb@opera.com <mostynb@opera.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-10-25 11:04:13 +0000 |
commit | 04810d8b4f93924ed0aa3427a611384e55c58d32 (patch) | |
tree | ffaa914fdb31488938a3d6321996fd5a33e3ad0d /skia | |
parent | f808dd8b0b72f04a754f08bd475f9c672f184039 (diff) | |
download | chromium_src-04810d8b4f93924ed0aa3427a611384e55c58d32.zip chromium_src-04810d8b4f93924ed0aa3427a611384e55c58d32.tar.gz chromium_src-04810d8b4f93924ed0aa3427a611384e55c58d32.tar.bz2 |
allow overriding default_font_cache_limit
Android uses a 1M default skia glyph cache, but all other builds that
use skia default to 20M. This patch makes the value configurable so non-android builds can choose an optimal value.
Review URL: https://codereview.chromium.org/41173002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@230999 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'skia')
-rw-r--r-- | skia/skia_library.gypi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/skia/skia_library.gypi b/skia/skia_library.gypi index 0eb3017..9d9a882 100644 --- a/skia/skia_library.gypi +++ b/skia/skia_library.gypi @@ -43,7 +43,7 @@ 'SK_ENABLE_LEGACY_API_ALIASING=1', ], - 'default_font_cache_limit': '(20*1024*1024)', + 'default_font_cache_limit%': '(20*1024*1024)', 'conditions': [ ['OS== "android"', { |