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 336 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
347 "resources/gpu_tile_task_worker_pool.h", | 347 "resources/gpu_tile_task_worker_pool.h", |
348 "resources/image_layer_updater.cc", | 348 "resources/image_layer_updater.cc", |
349 "resources/image_layer_updater.h", | 349 "resources/image_layer_updater.h", |
350 "resources/layer_painter.h", | 350 "resources/layer_painter.h", |
351 "resources/layer_quad.cc", | 351 "resources/layer_quad.cc", |
352 "resources/layer_quad.h", | 352 "resources/layer_quad.h", |
353 "resources/layer_tiling_data.cc", | 353 "resources/layer_tiling_data.cc", |
354 "resources/layer_tiling_data.h", | 354 "resources/layer_tiling_data.h", |
355 "resources/layer_updater.cc", | 355 "resources/layer_updater.cc", |
356 "resources/layer_updater.h", | 356 "resources/layer_updater.h", |
357 "resources/managed_tile_state.cc", | |
358 "resources/managed_tile_state.h", | |
359 "resources/memory_history.cc", | 357 "resources/memory_history.cc", |
360 "resources/memory_history.h", | 358 "resources/memory_history.h", |
361 "resources/one_copy_tile_task_worker_pool.cc", | 359 "resources/one_copy_tile_task_worker_pool.cc", |
362 "resources/one_copy_tile_task_worker_pool.h", | 360 "resources/one_copy_tile_task_worker_pool.h", |
363 "resources/picture.cc", | 361 "resources/picture.cc", |
364 "resources/picture.h", | 362 "resources/picture.h", |
365 "resources/picture_layer_tiling.cc", | 363 "resources/picture_layer_tiling.cc", |
366 "resources/picture_layer_tiling.h", | 364 "resources/picture_layer_tiling.h", |
367 "resources/picture_layer_tiling_set.cc", | 365 "resources/picture_layer_tiling_set.cc", |
368 "resources/picture_layer_tiling_set.h", | 366 "resources/picture_layer_tiling_set.h", |
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
424 "resources/task_graph_runner.cc", | 422 "resources/task_graph_runner.cc", |
425 "resources/task_graph_runner.h", | 423 "resources/task_graph_runner.h", |
426 "resources/texture_mailbox.cc", | 424 "resources/texture_mailbox.cc", |
427 "resources/texture_mailbox.h", | 425 "resources/texture_mailbox.h", |
428 "resources/texture_mailbox_deleter.cc", | 426 "resources/texture_mailbox_deleter.cc", |
429 "resources/texture_mailbox_deleter.h", | 427 "resources/texture_mailbox_deleter.h", |
430 "resources/texture_uploader.cc", | 428 "resources/texture_uploader.cc", |
431 "resources/texture_uploader.h", | 429 "resources/texture_uploader.h", |
432 "resources/tile.cc", | 430 "resources/tile.cc", |
433 "resources/tile.h", | 431 "resources/tile.h", |
| 432 "resources/tile_draw_info.cc", |
| 433 "resources/tile_draw_info.h", |
434 "resources/tile_manager.cc", | 434 "resources/tile_manager.cc", |
435 "resources/tile_manager.h", | 435 "resources/tile_manager.h", |
436 "resources/tile_priority.cc", | 436 "resources/tile_priority.cc", |
437 "resources/tile_priority.h", | 437 "resources/tile_priority.h", |
438 "resources/tiling_set_eviction_queue.cc", | 438 "resources/tiling_set_eviction_queue.cc", |
439 "resources/tiling_set_eviction_queue.h", | 439 "resources/tiling_set_eviction_queue.h", |
440 "resources/tiling_set_raster_queue.cc", | 440 "resources/tiling_set_raster_queue.cc", |
441 "resources/tiling_set_raster_queue.h", | 441 "resources/tiling_set_raster_queue.h", |
442 "resources/transferable_resource.cc", | 442 "resources/transferable_resource.cc", |
443 "resources/transferable_resource.h", | 443 "resources/transferable_resource.h", |
(...skipping 424 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
868 "//gpu/command_buffer/common:gles2_utils", | 868 "//gpu/command_buffer/common:gles2_utils", |
869 "//skia", | 869 "//skia", |
870 "//testing/gmock", | 870 "//testing/gmock", |
871 "//testing/gtest", | 871 "//testing/gtest", |
872 "//testing/perf", | 872 "//testing/perf", |
873 "//ui/gfx", | 873 "//ui/gfx", |
874 "//ui/gfx/geometry", | 874 "//ui/gfx/geometry", |
875 "//ui/gl", | 875 "//ui/gl", |
876 ] | 876 ] |
877 } | 877 } |
OLD | NEW |