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 325 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
336 "resources/display_list_raster_source.cc", | 336 "resources/display_list_raster_source.cc", |
337 "resources/display_list_raster_source.h", | 337 "resources/display_list_raster_source.h", |
338 "resources/display_list_recording_source.cc", | 338 "resources/display_list_recording_source.cc", |
339 "resources/display_list_recording_source.h", | 339 "resources/display_list_recording_source.h", |
340 "resources/drawing_display_item.cc", | 340 "resources/drawing_display_item.cc", |
341 "resources/drawing_display_item.h", | 341 "resources/drawing_display_item.h", |
342 "resources/eviction_tile_priority_queue.cc", | 342 "resources/eviction_tile_priority_queue.cc", |
343 "resources/eviction_tile_priority_queue.h", | 343 "resources/eviction_tile_priority_queue.h", |
344 "resources/filter_display_item.cc", | 344 "resources/filter_display_item.cc", |
345 "resources/filter_display_item.h", | 345 "resources/filter_display_item.h", |
| 346 "resources/float_clip_display_item.cc", |
| 347 "resources/float_clip_display_item.h", |
| 348 "resources/gpu_rasterizer.cc", |
| 349 "resources/gpu_rasterizer.h", |
346 "resources/gpu_tile_task_worker_pool.cc", | 350 "resources/gpu_tile_task_worker_pool.cc", |
347 "resources/gpu_tile_task_worker_pool.h", | 351 "resources/gpu_tile_task_worker_pool.h", |
348 "resources/image_layer_updater.cc", | 352 "resources/image_layer_updater.cc", |
349 "resources/image_layer_updater.h", | 353 "resources/image_layer_updater.h", |
350 "resources/layer_painter.h", | 354 "resources/layer_painter.h", |
351 "resources/layer_quad.cc", | 355 "resources/layer_quad.cc", |
352 "resources/layer_quad.h", | 356 "resources/layer_quad.h", |
353 "resources/layer_tiling_data.cc", | 357 "resources/layer_tiling_data.cc", |
354 "resources/layer_tiling_data.h", | 358 "resources/layer_tiling_data.h", |
355 "resources/layer_updater.cc", | 359 "resources/layer_updater.cc", |
(...skipping 21 matching lines...) Expand all Loading... |
377 "resources/prioritized_resource_manager.h", | 381 "resources/prioritized_resource_manager.h", |
378 "resources/priority_calculator.cc", | 382 "resources/priority_calculator.cc", |
379 "resources/priority_calculator.h", | 383 "resources/priority_calculator.h", |
380 "resources/raster_buffer.cc", | 384 "resources/raster_buffer.cc", |
381 "resources/raster_buffer.h", | 385 "resources/raster_buffer.h", |
382 "resources/raster_source.h", | 386 "resources/raster_source.h", |
383 "resources/raster_source_helper.cc", | 387 "resources/raster_source_helper.cc", |
384 "resources/raster_source_helper.h", | 388 "resources/raster_source_helper.h", |
385 "resources/raster_tile_priority_queue.cc", | 389 "resources/raster_tile_priority_queue.cc", |
386 "resources/raster_tile_priority_queue.h", | 390 "resources/raster_tile_priority_queue.h", |
| 391 "resources/rasterizer.h", |
| 392 "resources/software_rasterizer.cc", |
| 393 "resources/software_rasterizer.h", |
387 "resources/tile_task_worker_pool.cc", | 394 "resources/tile_task_worker_pool.cc", |
388 "resources/tile_task_worker_pool.h", | 395 "resources/tile_task_worker_pool.h", |
389 "resources/tile_task_runner.cc", | 396 "resources/tile_task_runner.cc", |
390 "resources/tile_task_runner.h", | 397 "resources/tile_task_runner.h", |
391 "resources/release_callback.h", | 398 "resources/release_callback.h", |
392 "resources/resource.cc", | 399 "resources/resource.cc", |
393 "resources/resource.h", | 400 "resources/resource.h", |
394 "resources/resource_format.cc", | 401 "resources/resource_format.cc", |
395 "resources/resource_format.h", | 402 "resources/resource_format.h", |
396 "resources/resource_pool.cc", | 403 "resources/resource_pool.cc", |
(...skipping 472 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
869 "//gpu/command_buffer/common:gles2_utils", | 876 "//gpu/command_buffer/common:gles2_utils", |
870 "//skia", | 877 "//skia", |
871 "//testing/gmock", | 878 "//testing/gmock", |
872 "//testing/gtest", | 879 "//testing/gtest", |
873 "//testing/perf", | 880 "//testing/perf", |
874 "//ui/gfx", | 881 "//ui/gfx", |
875 "//ui/gfx/geometry", | 882 "//ui/gfx/geometry", |
876 "//ui/gl", | 883 "//ui/gl", |
877 ] | 884 ] |
878 } | 885 } |
OLD | NEW |