| OLD | NEW |
| (Empty) |
| 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 | |
| 3 # found in the LICENSE file. | |
| 4 { | |
| 5 'variables': { | |
| 6 | |
| 7 # This is a place for defines which will hold out Skia changes. | |
| 8 # | |
| 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 | |
| 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 | |
| 13 # now no longer needed define. | |
| 14 # | |
| 15 # Examples of these sorts of changes are Skia API changes and Skia changes | |
| 16 # which will affect blink baselines. | |
| 17 # | |
| 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 | |
| 20 # defines in SkUserConfig.h which are normally more permanent. | |
| 21 'chromium_skia_defines': [ | |
| 22 'SK_IGNORE_DW_GRAY_FIX', | |
| 23 ], | |
| 24 }, | |
| 25 } | |
| OLD | NEW |