| 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 209 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 220 'SK_DEFERRED_CANVAS_USES_GPIPE=1', | 220 'SK_DEFERRED_CANVAS_USES_GPIPE=1', |
| 221 | 221 |
| 222 # this flag can be removed entirely once this has baked for a while | 222 # this flag can be removed entirely once this has baked for a while |
| 223 'SK_ALLOW_OVER_32K_BITMAPS', | 223 'SK_ALLOW_OVER_32K_BITMAPS', |
| 224 | 224 |
| 225 # skia uses static initializers to initialize the serialization logic | 225 # skia uses static initializers to initialize the serialization logic |
| 226 # of its "pictures" library. This is currently not used in chrome; if | 226 # of its "pictures" library. This is currently not used in chrome; if |
| 227 # it ever gets used the processes that use it need to call | 227 # it ever gets used the processes that use it need to call |
| 228 # SkGraphics::Init(). | 228 # SkGraphics::Init(). |
| 229 'SK_ALLOW_STATIC_GLOBAL_INITIALIZERS=0', | 229 'SK_ALLOW_STATIC_GLOBAL_INITIALIZERS=0', |
| 230 | |
| 231 # Temporarily keep old int-srcrect behavior, until we determine if | |
| 232 # the few failures are a bug or not. | |
| 233 'SK_SUPPORT_INT_SRCRECT_DRAWBITMAPRECT', | |
| 234 'SK_IGNORE_QUAD_STROKE_FIX', | |
| 235 'SK_IGNORE_TRANS_CLAMP_FIX', | |
| 236 'SK_IGNORE_FAST_SCALEMATRIX_INVERT', | |
| 237 ], | 230 ], |
| 238 'sources!': [ | 231 'sources!': [ |
| 239 '../third_party/skia/include/core/SkTypes.h', | 232 '../third_party/skia/include/core/SkTypes.h', |
| 240 ], | 233 ], |
| 241 'conditions': [ | 234 'conditions': [ |
| 242 ['skia_support_gpu != 0', { | 235 ['skia_support_gpu != 0', { |
| 243 'includes': [ | 236 'includes': [ |
| 244 '../third_party/skia/gyp/gpu.gypi', | 237 '../third_party/skia/gyp/gpu.gypi', |
| 245 ], | 238 ], |
| 246 'sources': [ | 239 'sources': [ |
| (...skipping 587 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 834 'sources': [ | 827 'sources': [ |
| 835 '../third_party/skia/src/opts/SkBitmapProcState_opts_none.cpp', | 828 '../third_party/skia/src/opts/SkBitmapProcState_opts_none.cpp', |
| 836 '../third_party/skia/src/opts/SkBlitRow_opts_none.cpp', | 829 '../third_party/skia/src/opts/SkBlitRow_opts_none.cpp', |
| 837 '../third_party/skia/src/opts/SkUtils_opts_none.cpp', | 830 '../third_party/skia/src/opts/SkUtils_opts_none.cpp', |
| 838 ], | 831 ], |
| 839 }, | 832 }, |
| 840 ], | 833 ], |
| 841 }], | 834 }], |
| 842 ], | 835 ], |
| 843 } | 836 } |
| OLD | NEW |