e3b61eb799
Reason for revert: need fix in edgebuilder+aa Original issue's description: > use conics for ovals and roundrects > > adapted from https://codereview.chromium.org/831313002/ > > BUG=skia: > TBR= > > Committed: https://skia.googlesource.com/skia/+/2bf1c4d58b84c73c6421edcb25e3afb4971da200 TBR=reed@chromium.org NOTREECHECKS=true NOTRY=true BUG=skia: Review URL: https://codereview.chromium.org/840573002
28 lines
900 B
Python
28 lines
900 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_GRADIENT_FACTORIES',
|
|
'SK_SUPPORT_LEGACY_PUBLIC_IMAGEINFO_FIELDS',
|
|
'SK_SUPPORT_LEGACY_GETDEVICE',
|
|
# Needed until we fix skbug.com/2440.
|
|
'SK_SUPPORT_LEGACY_CLIPTOLAYERFLAG',
|
|
# TODO(tfarina): Remove this when Android is fixed. skbug.com/3178
|
|
'SK_SUPPORT_LEGACY_PORTER_DUFF',
|
|
'SK_SUPPORT_LEGACY_DRAWDATA',
|
|
'SK_SUPPORT_LEGACY_CANVAS_VIRTUAL',
|
|
],
|
|
},
|
|
}
|