| 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 343 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 354 "resources/gpu_tile_task_worker_pool.h", | 354 "resources/gpu_tile_task_worker_pool.h", |
| 355 "resources/image_layer_updater.cc", | 355 "resources/image_layer_updater.cc", |
| 356 "resources/image_layer_updater.h", | 356 "resources/image_layer_updater.h", |
| 357 "resources/layer_painter.h", | 357 "resources/layer_painter.h", |
| 358 "resources/layer_quad.cc", | 358 "resources/layer_quad.cc", |
| 359 "resources/layer_quad.h", | 359 "resources/layer_quad.h", |
| 360 "resources/layer_tiling_data.cc", | 360 "resources/layer_tiling_data.cc", |
| 361 "resources/layer_tiling_data.h", | 361 "resources/layer_tiling_data.h", |
| 362 "resources/layer_updater.cc", | 362 "resources/layer_updater.cc", |
| 363 "resources/layer_updater.h", | 363 "resources/layer_updater.h", |
| 364 "resources/managed_tile_state.cc", | |
| 365 "resources/managed_tile_state.h", | |
| 366 "resources/memory_history.cc", | 364 "resources/memory_history.cc", |
| 367 "resources/memory_history.h", | 365 "resources/memory_history.h", |
| 368 "resources/one_copy_tile_task_worker_pool.cc", | 366 "resources/one_copy_tile_task_worker_pool.cc", |
| 369 "resources/one_copy_tile_task_worker_pool.h", | 367 "resources/one_copy_tile_task_worker_pool.h", |
| 370 "resources/picture.cc", | 368 "resources/picture.cc", |
| 371 "resources/picture.h", | 369 "resources/picture.h", |
| 372 "resources/picture_layer_tiling.cc", | 370 "resources/picture_layer_tiling.cc", |
| 373 "resources/picture_layer_tiling.h", | 371 "resources/picture_layer_tiling.h", |
| 374 "resources/picture_layer_tiling_set.cc", | 372 "resources/picture_layer_tiling_set.cc", |
| 375 "resources/picture_layer_tiling_set.h", | 373 "resources/picture_layer_tiling_set.h", |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 431 "resources/task_graph_runner.cc", | 429 "resources/task_graph_runner.cc", |
| 432 "resources/task_graph_runner.h", | 430 "resources/task_graph_runner.h", |
| 433 "resources/texture_mailbox.cc", | 431 "resources/texture_mailbox.cc", |
| 434 "resources/texture_mailbox.h", | 432 "resources/texture_mailbox.h", |
| 435 "resources/texture_mailbox_deleter.cc", | 433 "resources/texture_mailbox_deleter.cc", |
| 436 "resources/texture_mailbox_deleter.h", | 434 "resources/texture_mailbox_deleter.h", |
| 437 "resources/texture_uploader.cc", | 435 "resources/texture_uploader.cc", |
| 438 "resources/texture_uploader.h", | 436 "resources/texture_uploader.h", |
| 439 "resources/tile.cc", | 437 "resources/tile.cc", |
| 440 "resources/tile.h", | 438 "resources/tile.h", |
| 439 "resources/tile_draw_info.cc", |
| 440 "resources/tile_draw_info.h", |
| 441 "resources/tile_manager.cc", | 441 "resources/tile_manager.cc", |
| 442 "resources/tile_manager.h", | 442 "resources/tile_manager.h", |
| 443 "resources/tile_priority.cc", | 443 "resources/tile_priority.cc", |
| 444 "resources/tile_priority.h", | 444 "resources/tile_priority.h", |
| 445 "resources/tiling_set_eviction_queue.cc", | 445 "resources/tiling_set_eviction_queue.cc", |
| 446 "resources/tiling_set_eviction_queue.h", | 446 "resources/tiling_set_eviction_queue.h", |
| 447 "resources/tiling_set_raster_queue.cc", | 447 "resources/tiling_set_raster_queue.cc", |
| 448 "resources/tiling_set_raster_queue.h", | 448 "resources/tiling_set_raster_queue.h", |
| 449 "resources/transferable_resource.cc", | 449 "resources/transferable_resource.cc", |
| 450 "resources/transferable_resource.h", | 450 "resources/transferable_resource.h", |
| (...skipping 435 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 886 "//media", | 886 "//media", |
| 887 "//skia", | 887 "//skia", |
| 888 "//testing/gmock", | 888 "//testing/gmock", |
| 889 "//testing/gtest", | 889 "//testing/gtest", |
| 890 "//testing/perf", | 890 "//testing/perf", |
| 891 "//ui/gfx", | 891 "//ui/gfx", |
| 892 "//ui/gfx/geometry", | 892 "//ui/gfx/geometry", |
| 893 "//ui/gl", | 893 "//ui/gl", |
| 894 ] | 894 ] |
| 895 } | 895 } |
| OLD | NEW |