| 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 214 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 225 # of its "pictures" library. This is currently not used in chrome; if | 225 # of its "pictures" library. This is currently not used in chrome; if |
| 226 # it ever gets used the processes that use it need to call | 226 # it ever gets used the processes that use it need to call |
| 227 # SkGraphics::Init(). | 227 # SkGraphics::Init(). |
| 228 'SK_ALLOW_STATIC_GLOBAL_INITIALIZERS=0', | 228 'SK_ALLOW_STATIC_GLOBAL_INITIALIZERS=0', |
| 229 | 229 |
| 230 'SK_IGNORE_1XN_BITMAP_OPT', | 230 'SK_IGNORE_1XN_BITMAP_OPT', |
| 231 'SK_IGNORE_CLIP_BUG_FIX', | 231 'SK_IGNORE_CLIP_BUG_FIX', |
| 232 'SK_IGNORE_CONVEX_QUAD_OPT', | 232 'SK_IGNORE_CONVEX_QUAD_OPT', |
| 233 'SK_IGNORE_SETLINE_FIX', | 233 'SK_IGNORE_SETLINE_FIX', |
| 234 | 234 |
| 235 'SK_IGNORE_GRADIENT_DITHER_FIX', |
| 236 |
| 235 # Disable this check because it is too strict for some Chromium-specific | 237 # Disable this check because it is too strict for some Chromium-specific |
| 236 # subclasses of SkPixelRef. See bug: crbug.com/171776. | 238 # subclasses of SkPixelRef. See bug: crbug.com/171776. |
| 237 'SK_DISABLE_PIXELREF_LOCKCOUNT_BALANCE_CHECK', | 239 'SK_DISABLE_PIXELREF_LOCKCOUNT_BALANCE_CHECK', |
| 238 ], | 240 ], |
| 239 'sources!': [ | 241 'sources!': [ |
| 240 '../third_party/skia/include/core/SkTypes.h', | 242 '../third_party/skia/include/core/SkTypes.h', |
| 241 ], | 243 ], |
| 242 'conditions': [ | 244 'conditions': [ |
| 243 ['skia_support_gpu != 0', { | 245 ['skia_support_gpu != 0', { |
| 244 'includes': [ | 246 'includes': [ |
| (...skipping 591 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 836 'sources': [ | 838 'sources': [ |
| 837 '../third_party/skia/src/opts/SkBitmapProcState_opts_none.cpp', | 839 '../third_party/skia/src/opts/SkBitmapProcState_opts_none.cpp', |
| 838 '../third_party/skia/src/opts/SkBlitRow_opts_none.cpp', | 840 '../third_party/skia/src/opts/SkBlitRow_opts_none.cpp', |
| 839 '../third_party/skia/src/opts/SkUtils_opts_none.cpp', | 841 '../third_party/skia/src/opts/SkUtils_opts_none.cpp', |
| 840 ], | 842 ], |
| 841 }, | 843 }, |
| 842 ], | 844 ], |
| 843 }], | 845 }], |
| 844 ], | 846 ], |
| 845 } | 847 } |
| OLD | NEW |