OLD | NEW |
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 218 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
229 'resources/bitmap_content_layer_updater.cc', | 229 'resources/bitmap_content_layer_updater.cc', |
230 'resources/bitmap_content_layer_updater.h', | 230 'resources/bitmap_content_layer_updater.h', |
231 'resources/bitmap_skpicture_content_layer_updater.cc', | 231 'resources/bitmap_skpicture_content_layer_updater.cc', |
232 'resources/bitmap_skpicture_content_layer_updater.h', | 232 'resources/bitmap_skpicture_content_layer_updater.h', |
233 'resources/caching_bitmap_content_layer_updater.cc', | 233 'resources/caching_bitmap_content_layer_updater.cc', |
234 'resources/caching_bitmap_content_layer_updater.h', | 234 'resources/caching_bitmap_content_layer_updater.h', |
235 'resources/content_layer_updater.cc', | 235 'resources/content_layer_updater.cc', |
236 'resources/content_layer_updater.h', | 236 'resources/content_layer_updater.h', |
237 'resources/image_layer_updater.cc', | 237 'resources/image_layer_updater.cc', |
238 'resources/image_layer_updater.h', | 238 'resources/image_layer_updater.h', |
| 239 'resources/image_raster_worker_pool.cc', |
| 240 'resources/image_raster_worker_pool.h', |
239 'resources/layer_painter.h', | 241 'resources/layer_painter.h', |
240 'resources/layer_quad.cc', | 242 'resources/layer_quad.cc', |
241 'resources/layer_quad.h', | 243 'resources/layer_quad.h', |
242 'resources/layer_tiling_data.cc', | 244 'resources/layer_tiling_data.cc', |
243 'resources/layer_tiling_data.h', | 245 'resources/layer_tiling_data.h', |
244 'resources/layer_updater.cc', | 246 'resources/layer_updater.cc', |
245 'resources/layer_updater.h', | 247 'resources/layer_updater.h', |
246 'resources/managed_memory_policy.cc', | 248 'resources/managed_memory_policy.cc', |
247 'resources/managed_memory_policy.h', | 249 'resources/managed_memory_policy.h', |
248 'resources/managed_tile_state.cc', | 250 'resources/managed_tile_state.cc', |
249 'resources/managed_tile_state.h', | 251 'resources/managed_tile_state.h', |
250 'resources/memory_history.cc', | 252 'resources/memory_history.cc', |
251 'resources/memory_history.h', | 253 'resources/memory_history.h', |
252 'resources/picture.cc', | 254 'resources/picture.cc', |
253 'resources/picture.h', | 255 'resources/picture.h', |
254 'resources/picture_layer_tiling.cc', | 256 'resources/picture_layer_tiling.cc', |
255 'resources/picture_layer_tiling.h', | 257 'resources/picture_layer_tiling.h', |
256 'resources/picture_layer_tiling_set.cc', | 258 'resources/picture_layer_tiling_set.cc', |
257 'resources/picture_layer_tiling_set.h', | 259 'resources/picture_layer_tiling_set.h', |
258 'resources/picture_pile.cc', | 260 'resources/picture_pile.cc', |
259 'resources/picture_pile.h', | 261 'resources/picture_pile.h', |
260 'resources/picture_pile_base.cc', | 262 'resources/picture_pile_base.cc', |
261 'resources/picture_pile_base.h', | 263 'resources/picture_pile_base.h', |
262 'resources/picture_pile_impl.cc', | 264 'resources/picture_pile_impl.cc', |
263 'resources/picture_pile_impl.h', | 265 'resources/picture_pile_impl.h', |
| 266 'resources/pixel_buffer_raster_worker_pool.cc', |
| 267 'resources/pixel_buffer_raster_worker_pool.h', |
264 'resources/platform_color.h', | 268 'resources/platform_color.h', |
265 'resources/prioritized_resource.cc', | 269 'resources/prioritized_resource.cc', |
266 'resources/prioritized_resource.h', | 270 'resources/prioritized_resource.h', |
267 'resources/prioritized_resource_manager.cc', | 271 'resources/prioritized_resource_manager.cc', |
268 'resources/prioritized_resource_manager.h', | 272 'resources/prioritized_resource_manager.h', |
269 'resources/priority_calculator.cc', | 273 'resources/priority_calculator.cc', |
270 'resources/priority_calculator.h', | 274 'resources/priority_calculator.h', |
271 'resources/raster_worker_pool.cc', | 275 'resources/raster_worker_pool.cc', |
272 'resources/raster_worker_pool.h', | 276 'resources/raster_worker_pool.h', |
273 'resources/resource.cc', | 277 'resources/resource.cc', |
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
365 'CC_IMPLEMENTATION=1', | 369 'CC_IMPLEMENTATION=1', |
366 ], | 370 ], |
367 'sources': [ | 371 'sources': [ |
368 '<@(cc_source_files)', | 372 '<@(cc_source_files)', |
369 ], | 373 ], |
370 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 374 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
371 'msvs_disabled_warnings': [ 4267, ], | 375 'msvs_disabled_warnings': [ 4267, ], |
372 }, | 376 }, |
373 ], | 377 ], |
374 } | 378 } |
OLD | NEW |