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

Side by Side Diff: skia/skia.gyp

Issue 11453014: Implement the logic to kick off image decoding jobs for TileManager (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: adding more null checks 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
« cc/tile_manager.cc ('K') | « cc/tile_manager.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 (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 118 matching lines...) Expand 10 before | Expand all | Expand 10 after
129 '../third_party/skia/src/utils/mac/SkCreateCGImageRef.cpp', 129 '../third_party/skia/src/utils/mac/SkCreateCGImageRef.cpp',
130 '../third_party/skia/src/utils/SkBase64.cpp', 130 '../third_party/skia/src/utils/SkBase64.cpp',
131 '../third_party/skia/src/utils/SkBase64.h', 131 '../third_party/skia/src/utils/SkBase64.h',
132 '../third_party/skia/src/utils/SkBitSet.cpp', 132 '../third_party/skia/src/utils/SkBitSet.cpp',
133 '../third_party/skia/src/utils/SkBitSet.h', 133 '../third_party/skia/src/utils/SkBitSet.h',
134 '../third_party/skia/src/utils/SkDeferredCanvas.cpp', 134 '../third_party/skia/src/utils/SkDeferredCanvas.cpp',
135 '../third_party/skia/src/utils/SkMatrix44.cpp', 135 '../third_party/skia/src/utils/SkMatrix44.cpp',
136 '../third_party/skia/src/utils/SkNullCanvas.cpp', 136 '../third_party/skia/src/utils/SkNullCanvas.cpp',
137 '../third_party/skia/include/utils/SkNWayCanvas.h', 137 '../third_party/skia/include/utils/SkNWayCanvas.h',
138 '../third_party/skia/src/utils/SkNWayCanvas.cpp', 138 '../third_party/skia/src/utils/SkNWayCanvas.cpp',
139 139 '../third_party/skia/src/utils/SkPictureUtils.cpp',
140 '../third_party/skia/include/pdf/SkPDFDevice.h', 140 '../third_party/skia/include/pdf/SkPDFDevice.h',
141 '../third_party/skia/include/pdf/SkPDFDocument.h', 141 '../third_party/skia/include/pdf/SkPDFDocument.h',
142 142
143 '../third_party/skia/include/ports/SkTypeface_win.h', 143 '../third_party/skia/include/ports/SkTypeface_win.h',
144 144
145 '../third_party/skia/include/images/SkFlipPixelRef.h', 145 '../third_party/skia/include/images/SkFlipPixelRef.h',
146 '../third_party/skia/include/images/SkImageDecoder.h', 146 '../third_party/skia/include/images/SkImageDecoder.h',
147 '../third_party/skia/include/images/SkImageEncoder.h', 147 '../third_party/skia/include/images/SkImageEncoder.h',
148 '../third_party/skia/include/images/SkImageRef.h', 148 '../third_party/skia/include/images/SkImageRef.h',
149 '../third_party/skia/include/images/SkImageRef_GlobalPool.h', 149 '../third_party/skia/include/images/SkImageRef_GlobalPool.h',
150 '../third_party/skia/include/images/SkMovie.h', 150 '../third_party/skia/include/images/SkMovie.h',
151 '../third_party/skia/include/images/SkPageFlipper.h', 151 '../third_party/skia/include/images/SkPageFlipper.h',
152 152
153 '../third_party/skia/include/utils/SkNullCanvas.h', 153 '../third_party/skia/include/utils/SkNullCanvas.h',
154 154 '../third_party/skia/include/utils/SkPictureUtils.h',
155 'ext/bitmap_platform_device.h', 155 'ext/bitmap_platform_device.h',
156 'ext/bitmap_platform_device_android.cc', 156 'ext/bitmap_platform_device_android.cc',
157 'ext/bitmap_platform_device_android.h', 157 'ext/bitmap_platform_device_android.h',
158 'ext/bitmap_platform_device_data.h', 158 'ext/bitmap_platform_device_data.h',
159 'ext/bitmap_platform_device_linux.cc', 159 'ext/bitmap_platform_device_linux.cc',
160 'ext/bitmap_platform_device_linux.h', 160 'ext/bitmap_platform_device_linux.h',
161 'ext/bitmap_platform_device_mac.cc', 161 'ext/bitmap_platform_device_mac.cc',
162 'ext/bitmap_platform_device_mac.h', 162 'ext/bitmap_platform_device_mac.h',
163 'ext/bitmap_platform_device_win.cc', 163 'ext/bitmap_platform_device_win.cc',
164 'ext/bitmap_platform_device_win.h', 164 'ext/bitmap_platform_device_win.h',
(...skipping 673 matching lines...) Expand 10 before | Expand all | Expand 10 after
838 'sources': [ 838 'sources': [
839 '../third_party/skia/src/opts/SkBitmapProcState_opts_none.cpp', 839 '../third_party/skia/src/opts/SkBitmapProcState_opts_none.cpp',
840 '../third_party/skia/src/opts/SkBlitRow_opts_none.cpp', 840 '../third_party/skia/src/opts/SkBlitRow_opts_none.cpp',
841 '../third_party/skia/src/opts/SkUtils_opts_none.cpp', 841 '../third_party/skia/src/opts/SkUtils_opts_none.cpp',
842 ], 842 ],
843 }, 843 },
844 ], 844 ],
845 }], 845 }],
846 ], 846 ],
847 } 847 }
OLDNEW
« cc/tile_manager.cc ('K') | « cc/tile_manager.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698