| 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 338 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 349 "resources/picture_pile.h", | 349 "resources/picture_pile.h", |
| 350 "resources/picture_pile_impl.cc", | 350 "resources/picture_pile_impl.cc", |
| 351 "resources/picture_pile_impl.h", | 351 "resources/picture_pile_impl.h", |
| 352 "resources/pixel_buffer_raster_worker_pool.cc", | 352 "resources/pixel_buffer_raster_worker_pool.cc", |
| 353 "resources/pixel_buffer_raster_worker_pool.h", | 353 "resources/pixel_buffer_raster_worker_pool.h", |
| 354 "resources/platform_color.h", | 354 "resources/platform_color.h", |
| 355 "resources/prioritized_resource.cc", | 355 "resources/prioritized_resource.cc", |
| 356 "resources/prioritized_resource.h", | 356 "resources/prioritized_resource.h", |
| 357 "resources/prioritized_resource_manager.cc", | 357 "resources/prioritized_resource_manager.cc", |
| 358 "resources/prioritized_resource_manager.h", | 358 "resources/prioritized_resource_manager.h", |
| 359 "resources/prioritized_tile_set.cc", | |
| 360 "resources/prioritized_tile_set.h", | |
| 361 "resources/priority_calculator.cc", | 359 "resources/priority_calculator.cc", |
| 362 "resources/priority_calculator.h", | 360 "resources/priority_calculator.h", |
| 363 "resources/rasterizer.cc", | 361 "resources/rasterizer.cc", |
| 364 "resources/rasterizer.h", | 362 "resources/rasterizer.h", |
| 365 "resources/raster_mode.cc", | 363 "resources/raster_mode.cc", |
| 366 "resources/raster_mode.h", | 364 "resources/raster_mode.h", |
| 367 "resources/raster_tile_priority_queue.cc", | 365 "resources/raster_tile_priority_queue.cc", |
| 368 "resources/raster_tile_priority_queue.h", | 366 "resources/raster_tile_priority_queue.h", |
| 369 "resources/raster_worker_pool.cc", | 367 "resources/raster_worker_pool.cc", |
| 370 "resources/raster_worker_pool.h", | 368 "resources/raster_worker_pool.h", |
| (...skipping 325 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 696 "output/software_renderer_unittest.cc", | 694 "output/software_renderer_unittest.cc", |
| 697 "quads/draw_quad_unittest.cc", | 695 "quads/draw_quad_unittest.cc", |
| 698 "quads/render_pass_unittest.cc", | 696 "quads/render_pass_unittest.cc", |
| 699 "resources/layer_quad_unittest.cc", | 697 "resources/layer_quad_unittest.cc", |
| 700 "resources/picture_layer_tiling_set_unittest.cc", | 698 "resources/picture_layer_tiling_set_unittest.cc", |
| 701 "resources/picture_layer_tiling_unittest.cc", | 699 "resources/picture_layer_tiling_unittest.cc", |
| 702 "resources/picture_pile_impl_unittest.cc", | 700 "resources/picture_pile_impl_unittest.cc", |
| 703 "resources/picture_pile_unittest.cc", | 701 "resources/picture_pile_unittest.cc", |
| 704 "resources/picture_unittest.cc", | 702 "resources/picture_unittest.cc", |
| 705 "resources/prioritized_resource_unittest.cc", | 703 "resources/prioritized_resource_unittest.cc", |
| 706 "resources/prioritized_tile_set_unittest.cc", | |
| 707 "resources/raster_worker_pool_unittest.cc", | 704 "resources/raster_worker_pool_unittest.cc", |
| 708 "resources/resource_provider_unittest.cc", | 705 "resources/resource_provider_unittest.cc", |
| 709 "resources/resource_update_controller_unittest.cc", | 706 "resources/resource_update_controller_unittest.cc", |
| 710 "resources/scoped_resource_unittest.cc", | 707 "resources/scoped_resource_unittest.cc", |
| 711 "resources/task_graph_runner_unittest.cc", | 708 "resources/task_graph_runner_unittest.cc", |
| 712 "resources/texture_mailbox_deleter_unittest.cc", | 709 "resources/texture_mailbox_deleter_unittest.cc", |
| 713 "resources/texture_uploader_unittest.cc", | 710 "resources/texture_uploader_unittest.cc", |
| 714 "resources/tile_manager_unittest.cc", | 711 "resources/tile_manager_unittest.cc", |
| 715 "resources/tile_priority_unittest.cc", | 712 "resources/tile_priority_unittest.cc", |
| 716 "resources/video_resource_updater_unittest.cc", | 713 "resources/video_resource_updater_unittest.cc", |
| (...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 798 "//gpu/command_buffer/common:gles2_utils", | 795 "//gpu/command_buffer/common:gles2_utils", |
| 799 "//media", | 796 "//media", |
| 800 "//skia", | 797 "//skia", |
| 801 "//testing/gmock", | 798 "//testing/gmock", |
| 802 "//testing/gtest", | 799 "//testing/gtest", |
| 803 "//testing/perf", | 800 "//testing/perf", |
| 804 "//ui/gfx", | 801 "//ui/gfx", |
| 805 "//ui/gfx/geometry", | 802 "//ui/gfx/geometry", |
| 806 ] | 803 ] |
| 807 } | 804 } |
| OLD | NEW |