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 import("//testing/test.gni") | 5 import("//testing/test.gni") |
6 | 6 |
7 component("cc") { | 7 component("cc") { |
8 sources = [ | 8 sources = [ |
9 "animation/animation.cc", | 9 "animation/animation.cc", |
10 "animation/animation.h", | 10 "animation/animation.h", |
(...skipping 319 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
330 "resources/bitmap_content_layer_updater.cc", | 330 "resources/bitmap_content_layer_updater.cc", |
331 "resources/bitmap_content_layer_updater.h", | 331 "resources/bitmap_content_layer_updater.h", |
332 "resources/bitmap_skpicture_content_layer_updater.cc", | 332 "resources/bitmap_skpicture_content_layer_updater.cc", |
333 "resources/bitmap_skpicture_content_layer_updater.h", | 333 "resources/bitmap_skpicture_content_layer_updater.h", |
334 "resources/bitmap_tile_task_worker_pool.cc", | 334 "resources/bitmap_tile_task_worker_pool.cc", |
335 "resources/bitmap_tile_task_worker_pool.h", | 335 "resources/bitmap_tile_task_worker_pool.h", |
336 "resources/clip_display_item.cc", | 336 "resources/clip_display_item.cc", |
337 "resources/clip_display_item.h", | 337 "resources/clip_display_item.h", |
338 "resources/clip_path_display_item.cc", | 338 "resources/clip_path_display_item.cc", |
339 "resources/clip_path_display_item.h", | 339 "resources/clip_path_display_item.h", |
| 340 "resources/compositing_display_item.cc", |
| 341 "resources/compositing_display_item.h", |
340 "resources/content_layer_updater.cc", | 342 "resources/content_layer_updater.cc", |
341 "resources/content_layer_updater.h", | 343 "resources/content_layer_updater.h", |
342 "resources/display_item.cc", | 344 "resources/display_item.cc", |
343 "resources/display_item.h", | 345 "resources/display_item.h", |
344 "resources/display_item_list.cc", | 346 "resources/display_item_list.cc", |
345 "resources/display_item_list.h", | 347 "resources/display_item_list.h", |
346 "resources/display_list_raster_source.cc", | 348 "resources/display_list_raster_source.cc", |
347 "resources/display_list_raster_source.h", | 349 "resources/display_list_raster_source.h", |
348 "resources/display_list_recording_source.cc", | 350 "resources/display_list_recording_source.cc", |
349 "resources/display_list_recording_source.h", | 351 "resources/display_list_recording_source.h", |
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
459 "resources/tiling_set_eviction_queue.cc", | 461 "resources/tiling_set_eviction_queue.cc", |
460 "resources/tiling_set_eviction_queue.h", | 462 "resources/tiling_set_eviction_queue.h", |
461 "resources/tiling_set_raster_queue_all.cc", | 463 "resources/tiling_set_raster_queue_all.cc", |
462 "resources/tiling_set_raster_queue_all.h", | 464 "resources/tiling_set_raster_queue_all.h", |
463 "resources/tiling_set_raster_queue_required.cc", | 465 "resources/tiling_set_raster_queue_required.cc", |
464 "resources/tiling_set_raster_queue_required.h", | 466 "resources/tiling_set_raster_queue_required.h", |
465 "resources/transferable_resource.cc", | 467 "resources/transferable_resource.cc", |
466 "resources/transferable_resource.h", | 468 "resources/transferable_resource.h", |
467 "resources/transform_display_item.cc", | 469 "resources/transform_display_item.cc", |
468 "resources/transform_display_item.h", | 470 "resources/transform_display_item.h", |
469 "resources/transparency_display_item.cc", | |
470 "resources/transparency_display_item.h", | |
471 "resources/ui_resource_bitmap.cc", | 471 "resources/ui_resource_bitmap.cc", |
472 "resources/ui_resource_bitmap.h", | 472 "resources/ui_resource_bitmap.h", |
473 "resources/ui_resource_client.h", | 473 "resources/ui_resource_client.h", |
474 "resources/ui_resource_request.cc", | 474 "resources/ui_resource_request.cc", |
475 "resources/ui_resource_request.h", | 475 "resources/ui_resource_request.h", |
476 "resources/zero_copy_tile_task_worker_pool.cc", | 476 "resources/zero_copy_tile_task_worker_pool.cc", |
477 "resources/zero_copy_tile_task_worker_pool.h", | 477 "resources/zero_copy_tile_task_worker_pool.h", |
478 "scheduler/begin_frame_source.cc", | 478 "scheduler/begin_frame_source.cc", |
479 "scheduler/begin_frame_source.h", | 479 "scheduler/begin_frame_source.h", |
480 "scheduler/commit_earlyout_reason.h", | 480 "scheduler/commit_earlyout_reason.h", |
(...skipping 419 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
900 "//gpu/command_buffer/common:gles2_utils", | 900 "//gpu/command_buffer/common:gles2_utils", |
901 "//skia", | 901 "//skia", |
902 "//testing/gmock", | 902 "//testing/gmock", |
903 "//testing/gtest", | 903 "//testing/gtest", |
904 "//testing/perf", | 904 "//testing/perf", |
905 "//ui/gfx", | 905 "//ui/gfx", |
906 "//ui/gfx/geometry", | 906 "//ui/gfx/geometry", |
907 "//ui/gl", | 907 "//ui/gl", |
908 ] | 908 ] |
909 } | 909 } |
OLD | NEW |