OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 component("cc") { | 5 component("cc") { |
6 sources = [ | 6 sources = [ |
7 "animation/animation.cc", | 7 "animation/animation.cc", |
8 "animation/animation.h", | 8 "animation/animation.h", |
9 "animation/animation_curve.cc", | 9 "animation/animation_curve.cc", |
10 "animation/animation_curve.h", | 10 "animation/animation_curve.h", |
(...skipping 332 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
343 "resources/display_list_raster_source.cc", | 343 "resources/display_list_raster_source.cc", |
344 "resources/display_list_raster_source.h", | 344 "resources/display_list_raster_source.h", |
345 "resources/display_list_recording_source.cc", | 345 "resources/display_list_recording_source.cc", |
346 "resources/display_list_recording_source.h", | 346 "resources/display_list_recording_source.h", |
347 "resources/drawing_display_item.cc", | 347 "resources/drawing_display_item.cc", |
348 "resources/drawing_display_item.h", | 348 "resources/drawing_display_item.h", |
349 "resources/eviction_tile_priority_queue.cc", | 349 "resources/eviction_tile_priority_queue.cc", |
350 "resources/eviction_tile_priority_queue.h", | 350 "resources/eviction_tile_priority_queue.h", |
351 "resources/filter_display_item.cc", | 351 "resources/filter_display_item.cc", |
352 "resources/filter_display_item.h", | 352 "resources/filter_display_item.h", |
| 353 "resources/gpu_rasterizer.cc", |
| 354 "resources/gpu_rasterizer.h", |
353 "resources/gpu_tile_task_worker_pool.cc", | 355 "resources/gpu_tile_task_worker_pool.cc", |
354 "resources/gpu_tile_task_worker_pool.h", | 356 "resources/gpu_tile_task_worker_pool.h", |
355 "resources/image_layer_updater.cc", | 357 "resources/image_layer_updater.cc", |
356 "resources/image_layer_updater.h", | 358 "resources/image_layer_updater.h", |
357 "resources/layer_painter.h", | 359 "resources/layer_painter.h", |
358 "resources/layer_quad.cc", | 360 "resources/layer_quad.cc", |
359 "resources/layer_quad.h", | 361 "resources/layer_quad.h", |
360 "resources/layer_tiling_data.cc", | 362 "resources/layer_tiling_data.cc", |
361 "resources/layer_tiling_data.h", | 363 "resources/layer_tiling_data.h", |
362 "resources/layer_updater.cc", | 364 "resources/layer_updater.cc", |
(...skipping 21 matching lines...) Expand all Loading... |
384 "resources/prioritized_resource_manager.h", | 386 "resources/prioritized_resource_manager.h", |
385 "resources/priority_calculator.cc", | 387 "resources/priority_calculator.cc", |
386 "resources/priority_calculator.h", | 388 "resources/priority_calculator.h", |
387 "resources/raster_buffer.cc", | 389 "resources/raster_buffer.cc", |
388 "resources/raster_buffer.h", | 390 "resources/raster_buffer.h", |
389 "resources/raster_source.h", | 391 "resources/raster_source.h", |
390 "resources/raster_source_helper.cc", | 392 "resources/raster_source_helper.cc", |
391 "resources/raster_source_helper.h", | 393 "resources/raster_source_helper.h", |
392 "resources/raster_tile_priority_queue.cc", | 394 "resources/raster_tile_priority_queue.cc", |
393 "resources/raster_tile_priority_queue.h", | 395 "resources/raster_tile_priority_queue.h", |
| 396 "resources/rasterizer.h", |
| 397 "resources/software_rasterizer.cc", |
| 398 "resources/software_rasterizer.h", |
394 "resources/tile_task_worker_pool.cc", | 399 "resources/tile_task_worker_pool.cc", |
395 "resources/tile_task_worker_pool.h", | 400 "resources/tile_task_worker_pool.h", |
396 "resources/tile_task_runner.cc", | 401 "resources/tile_task_runner.cc", |
397 "resources/tile_task_runner.h", | 402 "resources/tile_task_runner.h", |
398 "resources/release_callback.h", | 403 "resources/release_callback.h", |
399 "resources/resource.cc", | 404 "resources/resource.cc", |
400 "resources/resource.h", | 405 "resources/resource.h", |
401 "resources/resource_format.cc", | 406 "resources/resource_format.cc", |
402 "resources/resource_format.h", | 407 "resources/resource_format.h", |
403 "resources/resource_pool.cc", | 408 "resources/resource_pool.cc", |
(...skipping 482 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
886 "//media", | 891 "//media", |
887 "//skia", | 892 "//skia", |
888 "//testing/gmock", | 893 "//testing/gmock", |
889 "//testing/gtest", | 894 "//testing/gtest", |
890 "//testing/perf", | 895 "//testing/perf", |
891 "//ui/gfx", | 896 "//ui/gfx", |
892 "//ui/gfx/geometry", | 897 "//ui/gfx/geometry", |
893 "//ui/gl", | 898 "//ui/gl", |
894 ] | 899 ] |
895 } | 900 } |
OLD | NEW |