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

Side by Side Diff: skia/skia.gyp

Issue 10918175: Define SK_SUPPORT_HINTING_SCALE_FACTOR by default (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 8 years, 3 months 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
« 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 (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'skia', 8 'target_name': 'skia',
9 'type': '<(component)', 9 'type': '<(component)',
10 'variables': { 10 'variables': {
(...skipping 220 matching lines...) Expand 10 before | Expand all | Expand 10 after
231 # SkGraphics::Init(). 231 # SkGraphics::Init().
232 'SK_ALLOW_STATIC_GLOBAL_INITIALIZERS=0', 232 'SK_ALLOW_STATIC_GLOBAL_INITIALIZERS=0',
233 233
234 # Temporarily disable the Skia fix in 234 # Temporarily disable the Skia fix in
235 # http://code.google.com/p/skia/source/detail?r=3037 ; enabling that 235 # http://code.google.com/p/skia/source/detail?r=3037 ; enabling that
236 # fix will require substantial rebaselining. 236 # fix will require substantial rebaselining.
237 'SK_DRAW_POS_TEXT_IGNORE_SUBPIXEL_LEFT_ALIGN_FIX', 237 'SK_DRAW_POS_TEXT_IGNORE_SUBPIXEL_LEFT_ALIGN_FIX',
238 238
239 # Temporarily ignore fix to antialias coverage, until we can rebaseline 239 # Temporarily ignore fix to antialias coverage, until we can rebaseline
240 'SK_USE_LEGACY_AA_COVERAGE', 240 'SK_USE_LEGACY_AA_COVERAGE',
241
242 # Temporarily use SkPaint to keep a scale factor needed for correct
243 # font rendering in high DPI mode.
244 # See https://codereview.appspot.com/6495089/
245 'SK_SUPPORT_HINTING_SCALE_FACTOR',
241 ], 246 ],
242 'sources!': [ 247 'sources!': [
243 '../third_party/skia/include/core/SkTypes.h', 248 '../third_party/skia/include/core/SkTypes.h',
244 ], 249 ],
245 'conditions': [ 250 'conditions': [
246 ['order_profiling != 0', { 251 ['order_profiling != 0', {
247 'target_conditions' : [ 252 'target_conditions' : [
248 ['_toolset=="target"', { 253 ['_toolset=="target"', {
249 'cflags!': [ '-finstrument-functions' ], 254 'cflags!': [ '-finstrument-functions' ],
250 }], 255 }],
(...skipping 499 matching lines...) Expand 10 before | Expand all | Expand 10 after
750 ], 755 ],
751 'include_dirs': [ 756 'include_dirs': [
752 '..', 757 '..',
753 ], 758 ],
754 'sources': [ 759 'sources': [
755 'ext/image_operations_bench.cc', 760 'ext/image_operations_bench.cc',
756 ], 761 ],
757 }, 762 },
758 ], 763 ],
759 } 764 }
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