Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4)

Side by Side Diff: skia/skia.gyp

Issue 11411361: Enable skia's separable mask blur. Remove the SK_DISABLE_SEPARABLE_MASK_BLUR flag from skia.gyp, a… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | skia/skia_test_expectations.txt » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 214 matching lines...) Expand 10 before | Expand all | Expand 10 after
225 225
226 # skia uses static initializers to initialize the serialization logic 226 # skia uses static initializers to initialize the serialization logic
227 # of its "pictures" library. This is currently not used in chrome; if 227 # of its "pictures" library. This is currently not used in chrome; if
228 # it ever gets used the processes that use it need to call 228 # it ever gets used the processes that use it need to call
229 # SkGraphics::Init(). 229 # SkGraphics::Init().
230 'SK_ALLOW_STATIC_GLOBAL_INITIALIZERS=0', 230 'SK_ALLOW_STATIC_GLOBAL_INITIALIZERS=0',
231 231
232 # Temporarily keep old int-srcrect behavior, until we determine if 232 # Temporarily keep old int-srcrect behavior, until we determine if
233 # the few failures are a bug or not. 233 # the few failures are a bug or not.
234 'SK_SUPPORT_INT_SRCRECT_DRAWBITMAPRECT', 234 'SK_SUPPORT_INT_SRCRECT_DRAWBITMAPRECT',
235
236 'SK_DISABLE_SEPARABLE_MASK_BLUR',
237 ], 235 ],
238 'sources!': [ 236 'sources!': [
239 '../third_party/skia/include/core/SkTypes.h', 237 '../third_party/skia/include/core/SkTypes.h',
240 ], 238 ],
241 'conditions': [ 239 'conditions': [
242 ['skia_support_gpu != 0', { 240 ['skia_support_gpu != 0', {
243 'includes': [ 241 'includes': [
244 '../third_party/skia/gyp/gpu.gypi', 242 '../third_party/skia/gyp/gpu.gypi',
245 ], 243 ],
246 'sources': [ 244 'sources': [
(...skipping 592 matching lines...) Expand 10 before | Expand all | Expand 10 after
839 'sources': [ 837 'sources': [
840 '../third_party/skia/src/opts/SkBitmapProcState_opts_none.cpp', 838 '../third_party/skia/src/opts/SkBitmapProcState_opts_none.cpp',
841 '../third_party/skia/src/opts/SkBlitRow_opts_none.cpp', 839 '../third_party/skia/src/opts/SkBlitRow_opts_none.cpp',
842 '../third_party/skia/src/opts/SkUtils_opts_none.cpp', 840 '../third_party/skia/src/opts/SkUtils_opts_none.cpp',
843 ], 841 ],
844 }, 842 },
845 ], 843 ],
846 }], 844 }],
847 ], 845 ],
848 } 846 }
OLDNEW
« no previous file with comments | « no previous file | skia/skia_test_expectations.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698