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

Side by Side Diff: skia/skia.gyp

Issue 11093010: Abandon older drawBitmapRect behavior, to get the new src-can-be-float behavior. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 2 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 (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 223 matching lines...) Expand 10 before | Expand all | Expand 10 after
234 # SkGraphics::Init(). 234 # SkGraphics::Init().
235 'SK_ALLOW_STATIC_GLOBAL_INITIALIZERS=0', 235 'SK_ALLOW_STATIC_GLOBAL_INITIALIZERS=0',
236 236
237 # Temporarily disable the Skia fix in 237 # Temporarily disable the Skia fix in
238 # http://code.google.com/p/skia/source/detail?r=3037 ; enabling that 238 # http://code.google.com/p/skia/source/detail?r=3037 ; enabling that
239 # fix will require substantial rebaselining. 239 # fix will require substantial rebaselining.
240 'SK_DRAW_POS_TEXT_IGNORE_SUBPIXEL_LEFT_ALIGN_FIX', 240 'SK_DRAW_POS_TEXT_IGNORE_SUBPIXEL_LEFT_ALIGN_FIX',
241 241
242 # Temporarily ignore fix to antialias coverage, until we can rebaseline 242 # Temporarily ignore fix to antialias coverage, until we can rebaseline
243 'SK_USE_LEGACY_AA_COVERAGE', 243 'SK_USE_LEGACY_AA_COVERAGE',
244
245 # Temporarily keep old int-srcrect behavior, until we determine if
246 # the few failures are a bug or not.
247 'SK_SUPPORT_INT_SRCRECT_DRAWBITMAPRECT',
248 ], 244 ],
249 'sources!': [ 245 'sources!': [
250 '../third_party/skia/include/core/SkTypes.h', 246 '../third_party/skia/include/core/SkTypes.h',
251 ], 247 ],
252 'conditions': [ 248 'conditions': [
253 ['skia_support_gpu != 0', { 249 ['skia_support_gpu != 0', {
254 'includes': [ 250 'includes': [
255 '../third_party/skia/gyp/gpu.gypi', 251 '../third_party/skia/gyp/gpu.gypi',
256 ], 252 ],
257 'sources': [ 253 'sources': [
(...skipping 580 matching lines...) Expand 10 before | Expand all | Expand 10 after
838 'sources': [ 834 'sources': [
839 '../third_party/skia/src/opts/SkBitmapProcState_opts_none.cpp', 835 '../third_party/skia/src/opts/SkBitmapProcState_opts_none.cpp',
840 '../third_party/skia/src/opts/SkBlitRow_opts_none.cpp', 836 '../third_party/skia/src/opts/SkBlitRow_opts_none.cpp',
841 '../third_party/skia/src/opts/SkUtils_opts_none.cpp', 837 '../third_party/skia/src/opts/SkUtils_opts_none.cpp',
842 ], 838 ],
843 }, 839 },
844 ], 840 ],
845 }], 841 }],
846 ], 842 ],
847 } 843 }
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