| 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/one_copy_raster_worker_pool.cc", | 347 "resources/one_copy_raster_worker_pool.cc", |
| 348 "resources/one_copy_raster_worker_pool.h", | 348 "resources/one_copy_raster_worker_pool.h", |
| 349 "resources/picture.cc", | 349 "resources/picture.cc", |
| 350 "resources/picture.h", | 350 "resources/picture.h", |
| 351 "resources/picture_layer_tiling.cc", | 351 "resources/picture_layer_tiling.cc", |
| 352 "resources/picture_layer_tiling.h", | 352 "resources/picture_layer_tiling.h", |
| 353 "resources/picture_layer_tiling_set.cc", | 353 "resources/picture_layer_tiling_set.cc", |
| 354 "resources/picture_layer_tiling_set.h", | 354 "resources/picture_layer_tiling_set.h", |
| 355 "resources/picture_pile.cc", | 355 "resources/picture_pile.cc", |
| 356 "resources/picture_pile.h", | 356 "resources/picture_pile.h", |
| 357 "resources/picture_pile_base.cc", | |
| 358 "resources/picture_pile_base.h", | |
| 359 "resources/picture_pile_impl.cc", | 357 "resources/picture_pile_impl.cc", |
| 360 "resources/picture_pile_impl.h", | 358 "resources/picture_pile_impl.h", |
| 361 "resources/pixel_buffer_raster_worker_pool.cc", | 359 "resources/pixel_buffer_raster_worker_pool.cc", |
| 362 "resources/pixel_buffer_raster_worker_pool.h", | 360 "resources/pixel_buffer_raster_worker_pool.h", |
| 363 "resources/platform_color.h", | 361 "resources/platform_color.h", |
| 364 "resources/prioritized_resource.cc", | 362 "resources/prioritized_resource.cc", |
| 365 "resources/prioritized_resource.h", | 363 "resources/prioritized_resource.h", |
| 366 "resources/prioritized_resource_manager.cc", | 364 "resources/prioritized_resource_manager.cc", |
| 367 "resources/prioritized_resource_manager.h", | 365 "resources/prioritized_resource_manager.h", |
| 368 "resources/priority_calculator.cc", | 366 "resources/priority_calculator.cc", |
| (...skipping 243 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 612 "test/test_context_support.h", | 610 "test/test_context_support.h", |
| 613 "test/test_gles2_interface.cc", | 611 "test/test_gles2_interface.cc", |
| 614 "test/test_gles2_interface.h", | 612 "test/test_gles2_interface.h", |
| 615 "test/test_gpu_memory_buffer_manager.cc", | 613 "test/test_gpu_memory_buffer_manager.cc", |
| 616 "test/test_gpu_memory_buffer_manager.h", | 614 "test/test_gpu_memory_buffer_manager.h", |
| 617 "test/test_image_factory.cc", | 615 "test/test_image_factory.cc", |
| 618 "test/test_image_factory.h", | 616 "test/test_image_factory.h", |
| 619 "test/test_now_source.cc", | 617 "test/test_now_source.cc", |
| 620 "test/test_now_source.h", | 618 "test/test_now_source.h", |
| 621 "test/test_occlusion_tracker.h", | 619 "test/test_occlusion_tracker.h", |
| 620 "test/test_picture_pile.h" |
| 622 "test/test_shared_bitmap_manager.cc", | 621 "test/test_shared_bitmap_manager.cc", |
| 623 "test/test_shared_bitmap_manager.h", | 622 "test/test_shared_bitmap_manager.h", |
| 624 "test/test_texture.cc", | 623 "test/test_texture.cc", |
| 625 "test/test_texture.h", | 624 "test/test_texture.h", |
| 626 "test/test_tile_priorities.cc", | 625 "test/test_tile_priorities.cc", |
| 627 "test/test_tile_priorities.h", | 626 "test/test_tile_priorities.h", |
| 628 "test/test_web_graphics_context_3d.cc", | 627 "test/test_web_graphics_context_3d.cc", |
| 629 "test/test_web_graphics_context_3d.h", | 628 "test/test_web_graphics_context_3d.h", |
| 630 "test/tiled_layer_test_common.cc", | 629 "test/tiled_layer_test_common.cc", |
| 631 "test/tiled_layer_test_common.h", | 630 "test/tiled_layer_test_common.h", |
| (...skipping 202 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 834 "//gpu/command_buffer/common:gles2_utils", | 833 "//gpu/command_buffer/common:gles2_utils", |
| 835 "//media", | 834 "//media", |
| 836 "//skia", | 835 "//skia", |
| 837 "//testing/gmock", | 836 "//testing/gmock", |
| 838 "//testing/gtest", | 837 "//testing/gtest", |
| 839 "//testing/perf", | 838 "//testing/perf", |
| 840 "//ui/gfx", | 839 "//ui/gfx", |
| 841 "//ui/gfx/geometry", | 840 "//ui/gfx/geometry", |
| 842 ] | 841 ] |
| 843 } | 842 } |
| OLD | NEW |