OLD | NEW |
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 224 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 | 244 |
245 # Temporarily disable opacity fix in extractSubset | |
246 'SK_DISABLE_EXTRACTSUBSET_OPAQUE_FIX', | |
247 | |
248 # Temporarily keep old int-srcrect behavior, until we determine if | 245 # Temporarily keep old int-srcrect behavior, until we determine if |
249 # the few failures are a bug or not. | 246 # the few failures are a bug or not. |
250 'SK_SUPPORT_INT_SRCRECT_DRAWBITMAPRECT', | 247 'SK_SUPPORT_INT_SRCRECT_DRAWBITMAPRECT', |
251 ], | 248 ], |
252 'sources!': [ | 249 'sources!': [ |
253 '../third_party/skia/include/core/SkTypes.h', | 250 '../third_party/skia/include/core/SkTypes.h', |
254 ], | 251 ], |
255 'conditions': [ | 252 'conditions': [ |
256 ['skia_support_gpu != 0', { | 253 ['skia_support_gpu != 0', { |
257 'includes': [ | 254 'includes': [ |
(...skipping 583 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
841 'sources': [ | 838 'sources': [ |
842 '../third_party/skia/src/opts/SkBitmapProcState_opts_none.cpp', | 839 '../third_party/skia/src/opts/SkBitmapProcState_opts_none.cpp', |
843 '../third_party/skia/src/opts/SkBlitRow_opts_none.cpp', | 840 '../third_party/skia/src/opts/SkBlitRow_opts_none.cpp', |
844 '../third_party/skia/src/opts/SkUtils_opts_none.cpp', | 841 '../third_party/skia/src/opts/SkUtils_opts_none.cpp', |
845 ], | 842 ], |
846 }, | 843 }, |
847 ], | 844 ], |
848 }], | 845 }], |
849 ], | 846 ], |
850 } | 847 } |
OLD | NEW |