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

Side by Side Diff: skia/skia_common.gypi

Issue 314233002: Remove SK_IGNORE_CORRECT_HIGH_QUALITY_IMAGE_SCALE (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Added suppressions. Created 6 years, 6 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | skia/skia_test_expectations.txt » ('j') | 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 # This gypi file handles the removal of platform-specific files from the 5 # This gypi file handles the removal of platform-specific files from the
6 # Skia build. 6 # Skia build.
7 { 7 {
8 'includes': [ 8 'includes': [
9 # skia_for_chromium_defines.gypi defines skia_for_chromium_defines 9 # skia_for_chromium_defines.gypi defines skia_for_chromium_defines
10 '../third_party/skia/gyp/skia_for_chromium_defines.gypi', 10 '../third_party/skia/gyp/skia_for_chromium_defines.gypi',
(...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after
197 'SK_IGNORE_BLURRED_RRECT_OPT', 197 'SK_IGNORE_BLURRED_RRECT_OPT',
198 198
199 'SK_IGNORE_QUAD_RR_CORNERS_OPT', 199 'SK_IGNORE_QUAD_RR_CORNERS_OPT',
200 200
201 # this flag forces Skia not to use typographic metrics with GDI. 201 # this flag forces Skia not to use typographic metrics with GDI.
202 'SK_GDI_ALWAYS_USE_TEXTMETRICS_FOR_FONT_METRICS', 202 'SK_GDI_ALWAYS_USE_TEXTMETRICS_FOR_FONT_METRICS',
203 203
204 'SK_DEFAULT_FONT_CACHE_LIMIT=<(default_font_cache_limit)', 204 'SK_DEFAULT_FONT_CACHE_LIMIT=<(default_font_cache_limit)',
205 205
206 'SK_USE_DISCARDABLE_SCALEDIMAGECACHE', 206 'SK_USE_DISCARDABLE_SCALEDIMAGECACHE',
207
208 # transitional, pending Blink suppressions/rebaselines
209 'SK_IGNORE_CORRECT_HIGH_QUALITY_IMAGE_SCALE',
210 ], 207 ],
211 208
212 'direct_dependent_settings': { 209 'direct_dependent_settings': {
213 'defines': [ 210 'defines': [
214 '<@(skia_export_defines)', 211 '<@(skia_export_defines)',
215 ], 212 ],
216 }, 213 },
217 214
218 # We would prefer this to be direct_dependent_settings, 215 # We would prefer this to be direct_dependent_settings,
219 # however we currently have no means to enforce that direct dependents 216 # however we currently have no means to enforce that direct dependents
220 # re-export if they include Skia headers in their public headers. 217 # re-export if they include Skia headers in their public headers.
221 'all_dependent_settings': { 218 'all_dependent_settings': {
222 'include_dirs': [ 219 'include_dirs': [
223 '..', 220 '..',
224 'config', 221 'config',
225 ], 222 ],
226 }, 223 },
227 224
228 'msvs_disabled_warnings': [4244, 4267, 4341, 4345, 4390, 4554, 4748, 4800], 225 'msvs_disabled_warnings': [4244, 4267, 4341, 4345, 4390, 4554, 4748, 4800],
229 } 226 }
OLDNEW
« no previous file with comments | « no previous file | skia/skia_test_expectations.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698