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

Side by Side Diff: skia/skia_chrome.gypi

Issue 111143005: cc: Gather and lock/unlock SkDiscardablePixelRefs instead of skia::LazyPixelRefs. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: s/lazy/discardable/ to fix cc_unittests Created 6 years, 11 months 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 | « skia/ext/pixel_ref_utils_unittest.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2013 The Chromium Authors. All rights reserved. 1 # Copyright 2013 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 # This gypi file contains all the Chrome-specific enhancements to Skia. 6 # This gypi file contains all the Chrome-specific enhancements to Skia.
7 # In component mode (shared_lib) it is folded into a single shared library with 7 # In component mode (shared_lib) it is folded into a single shared library with
8 # the Skia files but in all other cases it is a separate library. 8 # the Skia files but in all other cases it is a separate library.
9 { 9 {
10 'dependencies': [ 10 'dependencies': [
(...skipping 23 matching lines...) Expand all
34 'ext/bitmap_platform_device_skia.h', 34 'ext/bitmap_platform_device_skia.h',
35 'ext/bitmap_platform_device_win.cc', 35 'ext/bitmap_platform_device_win.cc',
36 'ext/bitmap_platform_device_win.h', 36 'ext/bitmap_platform_device_win.h',
37 'ext/convolver.cc', 37 'ext/convolver.cc',
38 'ext/convolver.h', 38 'ext/convolver.h',
39 'ext/google_logging.cc', 39 'ext/google_logging.cc',
40 'ext/image_operations.cc', 40 'ext/image_operations.cc',
41 'ext/image_operations.h', 41 'ext/image_operations.h',
42 'ext/lazy_pixel_ref.cc', 42 'ext/lazy_pixel_ref.cc',
43 'ext/lazy_pixel_ref.h', 43 'ext/lazy_pixel_ref.h',
44 'ext/lazy_pixel_ref_utils.cc',
45 'ext/lazy_pixel_ref_utils.h',
46 'ext/opacity_draw_filter.cc', 44 'ext/opacity_draw_filter.cc',
47 'ext/opacity_draw_filter.h', 45 'ext/opacity_draw_filter.h',
48 'ext/paint_simplifier.cc', 46 'ext/paint_simplifier.cc',
49 'ext/paint_simplifier.h', 47 'ext/paint_simplifier.h',
48 'ext/pixel_ref_utils.cc',
49 'ext/pixel_ref_utils.h',
50 'ext/platform_canvas.cc', 50 'ext/platform_canvas.cc',
51 'ext/platform_canvas.h', 51 'ext/platform_canvas.h',
52 'ext/platform_device.cc', 52 'ext/platform_device.cc',
53 'ext/platform_device.h', 53 'ext/platform_device.h',
54 'ext/platform_device_linux.cc', 54 'ext/platform_device_linux.cc',
55 'ext/platform_device_mac.cc', 55 'ext/platform_device_mac.cc',
56 'ext/platform_device_win.cc', 56 'ext/platform_device_win.cc',
57 'ext/recursive_gaussian_convolution.cc', 57 'ext/recursive_gaussian_convolution.cc',
58 'ext/recursive_gaussian_convolution.h', 58 'ext/recursive_gaussian_convolution.h',
59 'ext/refptr.h', 59 'ext/refptr.h',
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
117 'target_conditions': [ 117 'target_conditions': [
118 # Pull in specific linux files for android (which have been filtered out 118 # Pull in specific linux files for android (which have been filtered out
119 # by file name rules). 119 # by file name rules).
120 [ 'OS == "android"', { 120 [ 'OS == "android"', {
121 'sources/': [ 121 'sources/': [
122 ['include', 'ext/platform_device_linux\\.cc$'], 122 ['include', 'ext/platform_device_linux\\.cc$'],
123 ], 123 ],
124 }], 124 }],
125 ], 125 ],
126 } 126 }
OLDNEW
« no previous file with comments | « skia/ext/pixel_ref_utils_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698