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

Side by Side Diff: skia/skia_chrome.gypi

Issue 23206002: skia: Added chrome implementation of SkDiscardableMemory. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Removed OVERRIDE keyword from destructor. Created 7 years, 4 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
« no previous file with comments | « skia/ext/SkDiscardableMemory_chrome.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 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
54 'ext/platform_canvas.cc', 54 'ext/platform_canvas.cc',
55 'ext/platform_canvas.h', 55 'ext/platform_canvas.h',
56 'ext/platform_device.cc', 56 'ext/platform_device.cc',
57 'ext/platform_device.h', 57 'ext/platform_device.h',
58 'ext/platform_device_linux.cc', 58 'ext/platform_device_linux.cc',
59 'ext/platform_device_mac.cc', 59 'ext/platform_device_mac.cc',
60 'ext/platform_device_win.cc', 60 'ext/platform_device_win.cc',
61 'ext/recursive_gaussian_convolution.cc', 61 'ext/recursive_gaussian_convolution.cc',
62 'ext/recursive_gaussian_convolution.h', 62 'ext/recursive_gaussian_convolution.h',
63 'ext/refptr.h', 63 'ext/refptr.h',
64 'ext/SkDiscardableMemory_chrome.h',
65 'ext/SkDiscardableMemory_chrome.cc',
64 'ext/SkMemory_new_handler.cpp', 66 'ext/SkMemory_new_handler.cpp',
65 'ext/skia_trace_shim.h', 67 'ext/skia_trace_shim.h',
66 'ext/skia_utils_base.cc', 68 'ext/skia_utils_base.cc',
67 'ext/skia_utils_base.h', 69 'ext/skia_utils_base.h',
68 'ext/skia_utils_ios.mm', 70 'ext/skia_utils_ios.mm',
69 'ext/skia_utils_ios.h', 71 'ext/skia_utils_ios.h',
70 'ext/skia_utils_mac.mm', 72 'ext/skia_utils_mac.mm',
71 'ext/skia_utils_mac.h', 73 'ext/skia_utils_mac.h',
72 'ext/skia_utils_win.cc', 74 'ext/skia_utils_win.cc',
73 'ext/skia_utils_win.h', 75 'ext/skia_utils_win.h',
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
123 'target_conditions': [ 125 'target_conditions': [
124 # Pull in specific linux files for android (which have been filtered out 126 # Pull in specific linux files for android (which have been filtered out
125 # by file name rules). 127 # by file name rules).
126 [ 'OS == "android"', { 128 [ 'OS == "android"', {
127 'sources/': [ 129 'sources/': [
128 ['include', 'ext/platform_device_linux\\.cc$'], 130 ['include', 'ext/platform_device_linux\\.cc$'],
129 ], 131 ],
130 }], 132 }],
131 ], 133 ],
132 } 134 }
OLDNEW
« no previous file with comments | « skia/ext/SkDiscardableMemory_chrome.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698