diff options
author | ben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-10-27 19:01:00 +0000 |
---|---|---|
committer | ben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-10-27 19:01:00 +0000 |
commit | efadeacfefd3c0a9c2690d9121020a4a50b7e13f (patch) | |
tree | 222efe27305d572a7cdef940bd10b5a7900eaf0a /build | |
parent | 7c0be2ce98a65759a71ff5082ef9bd860e9170c1 (diff) | |
download | chromium_src-efadeacfefd3c0a9c2690d9121020a4a50b7e13f.zip chromium_src-efadeacfefd3c0a9c2690d9121020a4a50b7e13f.tar.gz chromium_src-efadeacfefd3c0a9c2690d9121020a4a50b7e13f.tar.bz2 |
Always use skia text rendering on Windows in Aura. GDI rendering is really wonky, and this is a convenient fix.
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/8400023
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@107608 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'build')
-rw-r--r-- | build/common.gypi | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/build/common.gypi b/build/common.gypi index d3018da..7236e93 100644 --- a/build/common.gypi +++ b/build/common.gypi @@ -285,6 +285,12 @@ 'toolkit_uses_gtk%': 1, 'use_x11%': 1, }], + # We always use skia text rendering in Aura on Windows, since GDI + # doesn't agree with our BackingStore. + # TODO(beng): remove once skia text rendering is on by default. + ['use_aura==1 and OS=="win"', { + 'enable_skia_text%': 1, + }], ['use_aura==1 and OS!="win"', { 'toolkit_uses_gtk%': 0, }], |