| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 'variables': { | 5 'variables': { |
| 6 | 6 |
| 7 # This is a place for defines which will hold out Skia changes. | 7 # This is a place for defines which will hold out Skia changes. |
| 8 # | 8 # |
| 9 # When Skia needs to make a change which will affect Chromium, a define may | 9 # When Skia needs to make a change which will affect Chromium, a define may |
| 10 # be added here, the Skia change made behind this define, then Skia rolled | 10 # be added here, the Skia change made behind this define, then Skia rolled |
| 11 # into Chromium. At this point the Chromium side change can be made while | 11 # into Chromium. At this point the Chromium side change can be made while |
| 12 # also removing the define. After this Skia can remove the code behind the | 12 # also removing the define. After this Skia can remove the code behind the |
| 13 # now no longer needed define. | 13 # now no longer needed define. |
| 14 # | 14 # |
| 15 # Examples of these sorts of changes are Skia API changes and Skia changes | 15 # Examples of these sorts of changes are Skia API changes and Skia changes |
| 16 # which will affect blink baselines. | 16 # which will affect blink baselines. |
| 17 # | 17 # |
| 18 # The intent is that the defines here are transient. Every effort should be | 18 # The intent is that the defines here are transient. Every effort should be |
| 19 # made to remove these defines as soon as practical. This is in contrast to | 19 # made to remove these defines as soon as practical. This is in contrast to |
| 20 # defines in SkUserConfig.h which are normally more permanent. | 20 # defines in SkUserConfig.h which are normally more permanent. |
| 21 'chromium_skia_defines': [ | 21 'chromium_skia_defines': [ |
| 22 'SK_IGNORE_DW_GRAY_FIX', | 22 'SK_IGNORE_DW_GRAY_FIX', |
| 23 'SK_SUPPORT_LEGACY_DATA_FACTORIES', | |
| 24 ], | 23 ], |
| 25 }, | 24 }, |
| 26 } | 25 } |
| OLD | NEW |