| 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 345 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 356 "resources/picture_pile_base.h", | 356 "resources/picture_pile_base.h", |
| 357 "resources/picture_pile_impl.cc", | 357 "resources/picture_pile_impl.cc", |
| 358 "resources/picture_pile_impl.h", | 358 "resources/picture_pile_impl.h", |
| 359 "resources/pixel_buffer_raster_worker_pool.cc", | 359 "resources/pixel_buffer_raster_worker_pool.cc", |
| 360 "resources/pixel_buffer_raster_worker_pool.h", | 360 "resources/pixel_buffer_raster_worker_pool.h", |
| 361 "resources/platform_color.h", | 361 "resources/platform_color.h", |
| 362 "resources/prioritized_resource.cc", | 362 "resources/prioritized_resource.cc", |
| 363 "resources/prioritized_resource.h", | 363 "resources/prioritized_resource.h", |
| 364 "resources/prioritized_resource_manager.cc", | 364 "resources/prioritized_resource_manager.cc", |
| 365 "resources/prioritized_resource_manager.h", | 365 "resources/prioritized_resource_manager.h", |
| 366 "resources/prioritized_tile_set.cc", | |
| 367 "resources/prioritized_tile_set.h", | |
| 368 "resources/priority_calculator.cc", | 366 "resources/priority_calculator.cc", |
| 369 "resources/priority_calculator.h", | 367 "resources/priority_calculator.h", |
| 370 "resources/raster_buffer.cc", | 368 "resources/raster_buffer.cc", |
| 371 "resources/raster_buffer.h", | 369 "resources/raster_buffer.h", |
| 372 "resources/raster_tile_priority_queue.cc", | 370 "resources/raster_tile_priority_queue.cc", |
| 373 "resources/raster_tile_priority_queue.h", | 371 "resources/raster_tile_priority_queue.h", |
| 374 "resources/raster_worker_pool.cc", | 372 "resources/raster_worker_pool.cc", |
| 375 "resources/raster_worker_pool.h", | 373 "resources/raster_worker_pool.h", |
| 376 "resources/rasterizer.cc", | 374 "resources/rasterizer.cc", |
| 377 "resources/rasterizer.h", | 375 "resources/rasterizer.h", |
| (...skipping 340 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 718 "quads/draw_quad_unittest.cc", | 716 "quads/draw_quad_unittest.cc", |
| 719 "quads/list_container_unittest.cc", | 717 "quads/list_container_unittest.cc", |
| 720 "quads/render_pass_unittest.cc", | 718 "quads/render_pass_unittest.cc", |
| 721 "resources/layer_quad_unittest.cc", | 719 "resources/layer_quad_unittest.cc", |
| 722 "resources/picture_layer_tiling_set_unittest.cc", | 720 "resources/picture_layer_tiling_set_unittest.cc", |
| 723 "resources/picture_layer_tiling_unittest.cc", | 721 "resources/picture_layer_tiling_unittest.cc", |
| 724 "resources/picture_pile_impl_unittest.cc", | 722 "resources/picture_pile_impl_unittest.cc", |
| 725 "resources/picture_pile_unittest.cc", | 723 "resources/picture_pile_unittest.cc", |
| 726 "resources/picture_unittest.cc", | 724 "resources/picture_unittest.cc", |
| 727 "resources/prioritized_resource_unittest.cc", | 725 "resources/prioritized_resource_unittest.cc", |
| 728 "resources/prioritized_tile_set_unittest.cc", | |
| 729 "resources/raster_worker_pool_unittest.cc", | 726 "resources/raster_worker_pool_unittest.cc", |
| 730 "resources/resource_provider_unittest.cc", | 727 "resources/resource_provider_unittest.cc", |
| 731 "resources/resource_update_controller_unittest.cc", | 728 "resources/resource_update_controller_unittest.cc", |
| 732 "resources/scoped_resource_unittest.cc", | 729 "resources/scoped_resource_unittest.cc", |
| 733 "resources/task_graph_runner_unittest.cc", | 730 "resources/task_graph_runner_unittest.cc", |
| 734 "resources/texture_mailbox_deleter_unittest.cc", | 731 "resources/texture_mailbox_deleter_unittest.cc", |
| 735 "resources/texture_uploader_unittest.cc", | 732 "resources/texture_uploader_unittest.cc", |
| 736 "resources/tile_manager_unittest.cc", | 733 "resources/tile_manager_unittest.cc", |
| 737 "resources/tile_priority_unittest.cc", | 734 "resources/tile_priority_unittest.cc", |
| 738 "resources/video_resource_updater_unittest.cc", | 735 "resources/video_resource_updater_unittest.cc", |
| (...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 824 "//gpu/command_buffer/common:gles2_utils", | 821 "//gpu/command_buffer/common:gles2_utils", |
| 825 "//media", | 822 "//media", |
| 826 "//skia", | 823 "//skia", |
| 827 "//testing/gmock", | 824 "//testing/gmock", |
| 828 "//testing/gtest", | 825 "//testing/gtest", |
| 829 "//testing/perf", | 826 "//testing/perf", |
| 830 "//ui/gfx", | 827 "//ui/gfx", |
| 831 "//ui/gfx/geometry", | 828 "//ui/gfx/geometry", |
| 832 ] | 829 ] |
| 833 } | 830 } |
| OLD | NEW |