3389e00136
This class allows a client of SkCodec to read chunks in the data stream that are not recognized by libpng. This is used by Android to specify ninepatch data. Taken from SkImageDecoder::Peeker. Modify the name of the class and its method to be more specific to their use. Make SkImageDecoder::Peeker a subclass of the new class, to help stage the change in Android. Add a test to verify that it works. BUG=skia:4574 BUG=skia:3257 Review URL: https://codereview.chromium.org/1040453002
26 lines
802 B
Python
26 lines
802 B
Python
# Copyright 2014 Google Inc.
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
|
|
# This file is included by chrome's skia/skia_common.gypi, and is intended to
|
|
# augment the skia flags that are set there.
|
|
|
|
{
|
|
'variables': {
|
|
|
|
# These flags will be defined in the android framework.
|
|
#
|
|
# If these become 'permanent', they should be moved into common_variables.gypi
|
|
#
|
|
'skia_for_android_framework_defines': [
|
|
'SK_SUPPORT_LEGACY_UNBALANCED_PIXELREF_LOCKCOUNT',
|
|
# Needed until we fix https://bug.skia.org/2440 .
|
|
'SK_SUPPORT_LEGACY_CLIPTOLAYERFLAG',
|
|
'SK_IGNORE_LINEONLY_AA_CONVEX_PATH_OPTS',
|
|
'SK_SUPPORT_LEGACY_GRADIENT_DITHERING',
|
|
'SK_IGNORE_GL_TEXTURE_TARGET',
|
|
'SK_LEGACY_PEEKER',
|
|
],
|
|
},
|
|
}
|