| 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 229 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 240 # fix will require substantial rebaselining. | 240 # fix will require substantial rebaselining. |
| 241 'SK_DRAW_POS_TEXT_IGNORE_SUBPIXEL_LEFT_ALIGN_FIX', | 241 'SK_DRAW_POS_TEXT_IGNORE_SUBPIXEL_LEFT_ALIGN_FIX', |
| 242 | 242 |
| 243 # Temporarily ignore fix to antialias coverage, until we can rebaseline | 243 # Temporarily ignore fix to antialias coverage, until we can rebaseline |
| 244 'SK_USE_LEGACY_AA_COVERAGE', | 244 'SK_USE_LEGACY_AA_COVERAGE', |
| 245 | 245 |
| 246 # Temporarily use SkPaint to keep a scale factor needed for correct | 246 # Temporarily use SkPaint to keep a scale factor needed for correct |
| 247 # font rendering in high DPI mode. | 247 # font rendering in high DPI mode. |
| 248 # See https://codereview.appspot.com/6495089/ | 248 # See https://codereview.appspot.com/6495089/ |
| 249 'SK_SUPPORT_HINTING_SCALE_FACTOR', | 249 'SK_SUPPORT_HINTING_SCALE_FACTOR', |
| 250 |
| 251 # Temporarily keep old int-srcrect behavior, until we determine if |
| 252 # the few failures are a bug or not. |
| 253 'SK_SUPPORT_INT_SRCRECT_DRAWBITMAPRECT', |
| 250 ], | 254 ], |
| 251 'sources!': [ | 255 'sources!': [ |
| 252 '../third_party/skia/include/core/SkTypes.h', | 256 '../third_party/skia/include/core/SkTypes.h', |
| 253 ], | 257 ], |
| 254 'conditions': [ | 258 'conditions': [ |
| 255 ['skia_support_gpu != 0', { | 259 ['skia_support_gpu != 0', { |
| 256 'includes': [ | 260 'includes': [ |
| 257 '../third_party/skia/gyp/gpu.gypi', | 261 '../third_party/skia/gyp/gpu.gypi', |
| 258 ], | 262 ], |
| 259 'sources': [ | 263 'sources': [ |
| (...skipping 581 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 841 'sources': [ | 845 'sources': [ |
| 842 '../third_party/skia/src/opts/SkBitmapProcState_opts_none.cpp', | 846 '../third_party/skia/src/opts/SkBitmapProcState_opts_none.cpp', |
| 843 '../third_party/skia/src/opts/SkBlitRow_opts_none.cpp', | 847 '../third_party/skia/src/opts/SkBlitRow_opts_none.cpp', |
| 844 '../third_party/skia/src/opts/SkUtils_opts_none.cpp', | 848 '../third_party/skia/src/opts/SkUtils_opts_none.cpp', |
| 845 ], | 849 ], |
| 846 }, | 850 }, |
| 847 ], | 851 ], |
| 848 }], | 852 }], |
| 849 ], | 853 ], |
| 850 } | 854 } |
| OLD | NEW |