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

Side by Side Diff: cc/cc.gyp

Issue 16190002: cc: Add new RasterWorkerPool interface. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: pass unit tests Created 7 years, 6 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
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 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 'cc_source_files': [ 8 'cc_source_files': [
9 'animation/animation.cc', 9 'animation/animation.cc',
10 'animation/animation.h', 10 'animation/animation.h',
(...skipping 219 matching lines...) Expand 10 before | Expand all | Expand 10 after
230 'resources/bitmap_content_layer_updater.cc', 230 'resources/bitmap_content_layer_updater.cc',
231 'resources/bitmap_content_layer_updater.h', 231 'resources/bitmap_content_layer_updater.h',
232 'resources/bitmap_skpicture_content_layer_updater.cc', 232 'resources/bitmap_skpicture_content_layer_updater.cc',
233 'resources/bitmap_skpicture_content_layer_updater.h', 233 'resources/bitmap_skpicture_content_layer_updater.h',
234 'resources/caching_bitmap_content_layer_updater.cc', 234 'resources/caching_bitmap_content_layer_updater.cc',
235 'resources/caching_bitmap_content_layer_updater.h', 235 'resources/caching_bitmap_content_layer_updater.h',
236 'resources/content_layer_updater.cc', 236 'resources/content_layer_updater.cc',
237 'resources/content_layer_updater.h', 237 'resources/content_layer_updater.h',
238 'resources/image_layer_updater.cc', 238 'resources/image_layer_updater.cc',
239 'resources/image_layer_updater.h', 239 'resources/image_layer_updater.h',
240 'resources/image_raster_worker_pool.cc',
241 'resources/image_raster_worker_pool.h',
240 'resources/layer_painter.h', 242 'resources/layer_painter.h',
241 'resources/layer_quad.cc', 243 'resources/layer_quad.cc',
242 'resources/layer_quad.h', 244 'resources/layer_quad.h',
243 'resources/layer_tiling_data.cc', 245 'resources/layer_tiling_data.cc',
244 'resources/layer_tiling_data.h', 246 'resources/layer_tiling_data.h',
245 'resources/layer_updater.cc', 247 'resources/layer_updater.cc',
246 'resources/layer_updater.h', 248 'resources/layer_updater.h',
247 'resources/managed_memory_policy.cc', 249 'resources/managed_memory_policy.cc',
248 'resources/managed_memory_policy.h', 250 'resources/managed_memory_policy.h',
249 'resources/managed_tile_state.cc', 251 'resources/managed_tile_state.cc',
250 'resources/managed_tile_state.h', 252 'resources/managed_tile_state.h',
251 'resources/memory_history.cc', 253 'resources/memory_history.cc',
252 'resources/memory_history.h', 254 'resources/memory_history.h',
253 'resources/picture.cc', 255 'resources/picture.cc',
254 'resources/picture.h', 256 'resources/picture.h',
255 'resources/picture_layer_tiling.cc', 257 'resources/picture_layer_tiling.cc',
256 'resources/picture_layer_tiling.h', 258 'resources/picture_layer_tiling.h',
257 'resources/picture_layer_tiling_set.cc', 259 'resources/picture_layer_tiling_set.cc',
258 'resources/picture_layer_tiling_set.h', 260 'resources/picture_layer_tiling_set.h',
259 'resources/picture_pile.cc', 261 'resources/picture_pile.cc',
260 'resources/picture_pile.h', 262 'resources/picture_pile.h',
261 'resources/picture_pile_base.cc', 263 'resources/picture_pile_base.cc',
262 'resources/picture_pile_base.h', 264 'resources/picture_pile_base.h',
263 'resources/picture_pile_impl.cc', 265 'resources/picture_pile_impl.cc',
264 'resources/picture_pile_impl.h', 266 'resources/picture_pile_impl.h',
267 'resources/pixel_buffer_raster_worker_pool.cc',
268 'resources/pixel_buffer_raster_worker_pool.h',
265 'resources/platform_color.h', 269 'resources/platform_color.h',
266 'resources/prioritized_resource.cc', 270 'resources/prioritized_resource.cc',
267 'resources/prioritized_resource.h', 271 'resources/prioritized_resource.h',
268 'resources/prioritized_resource_manager.cc', 272 'resources/prioritized_resource_manager.cc',
269 'resources/prioritized_resource_manager.h', 273 'resources/prioritized_resource_manager.h',
270 'resources/priority_calculator.cc', 274 'resources/priority_calculator.cc',
271 'resources/priority_calculator.h', 275 'resources/priority_calculator.h',
272 'resources/raster_worker_pool.cc', 276 'resources/raster_worker_pool.cc',
273 'resources/raster_worker_pool.h', 277 'resources/raster_worker_pool.h',
274 'resources/resource.cc', 278 'resources/resource.cc',
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after
366 'CC_IMPLEMENTATION=1', 370 'CC_IMPLEMENTATION=1',
367 ], 371 ],
368 'sources': [ 372 'sources': [
369 '<@(cc_source_files)', 373 '<@(cc_source_files)',
370 ], 374 ],
371 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 375 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
372 'msvs_disabled_warnings': [ 4267, ], 376 'msvs_disabled_warnings': [ 4267, ],
373 }, 377 },
374 ], 378 ],
375 } 379 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698