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 309 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
320 "resources/bitmap_content_layer_updater.cc", | 320 "resources/bitmap_content_layer_updater.cc", |
321 "resources/bitmap_content_layer_updater.h", | 321 "resources/bitmap_content_layer_updater.h", |
322 "resources/bitmap_raster_worker_pool.cc", | 322 "resources/bitmap_raster_worker_pool.cc", |
323 "resources/bitmap_raster_worker_pool.h", | 323 "resources/bitmap_raster_worker_pool.h", |
324 "resources/bitmap_skpicture_content_layer_updater.cc", | 324 "resources/bitmap_skpicture_content_layer_updater.cc", |
325 "resources/bitmap_skpicture_content_layer_updater.h", | 325 "resources/bitmap_skpicture_content_layer_updater.h", |
326 "resources/content_layer_updater.cc", | 326 "resources/content_layer_updater.cc", |
327 "resources/content_layer_updater.h", | 327 "resources/content_layer_updater.h", |
328 "resources/eviction_tile_priority_queue.cc", | 328 "resources/eviction_tile_priority_queue.cc", |
329 "resources/eviction_tile_priority_queue.h", | 329 "resources/eviction_tile_priority_queue.h", |
| 330 "resources/gpu_memory_buffer_manager.h", |
330 "resources/gpu_raster_worker_pool.cc", | 331 "resources/gpu_raster_worker_pool.cc", |
331 "resources/gpu_raster_worker_pool.h", | 332 "resources/gpu_raster_worker_pool.h", |
332 "resources/image_layer_updater.cc", | 333 "resources/image_layer_updater.cc", |
333 "resources/image_layer_updater.h", | 334 "resources/image_layer_updater.h", |
334 "resources/layer_painter.h", | 335 "resources/layer_painter.h", |
335 "resources/layer_quad.cc", | 336 "resources/layer_quad.cc", |
336 "resources/layer_quad.h", | 337 "resources/layer_quad.h", |
337 "resources/layer_tiling_data.cc", | 338 "resources/layer_tiling_data.cc", |
338 "resources/layer_tiling_data.h", | 339 "resources/layer_tiling_data.h", |
339 "resources/layer_updater.cc", | 340 "resources/layer_updater.cc", |
(...skipping 259 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
599 "test/skia_common.cc", | 600 "test/skia_common.cc", |
600 "test/skia_common.h", | 601 "test/skia_common.h", |
601 "test/solid_color_content_layer_client.cc", | 602 "test/solid_color_content_layer_client.cc", |
602 "test/solid_color_content_layer_client.h", | 603 "test/solid_color_content_layer_client.h", |
603 "test/test_context_provider.cc", | 604 "test/test_context_provider.cc", |
604 "test/test_context_provider.h", | 605 "test/test_context_provider.h", |
605 "test/test_context_support.cc", | 606 "test/test_context_support.cc", |
606 "test/test_context_support.h", | 607 "test/test_context_support.h", |
607 "test/test_gles2_interface.cc", | 608 "test/test_gles2_interface.cc", |
608 "test/test_gles2_interface.h", | 609 "test/test_gles2_interface.h", |
| 610 "test/test_gpu_memory_buffer_manager.cc", |
| 611 "test/test_gpu_memory_buffer_manager.h", |
609 "test/test_now_source.cc", | 612 "test/test_now_source.cc", |
610 "test/test_now_source.h", | 613 "test/test_now_source.h", |
611 "test/test_occlusion_tracker.h", | 614 "test/test_occlusion_tracker.h", |
612 "test/test_shared_bitmap_manager.cc", | 615 "test/test_shared_bitmap_manager.cc", |
613 "test/test_shared_bitmap_manager.h", | 616 "test/test_shared_bitmap_manager.h", |
614 "test/test_texture.cc", | 617 "test/test_texture.cc", |
615 "test/test_texture.h", | 618 "test/test_texture.h", |
616 "test/test_tile_priorities.cc", | 619 "test/test_tile_priorities.cc", |
617 "test/test_tile_priorities.h", | 620 "test/test_tile_priorities.h", |
618 "test/test_web_graphics_context_3d.cc", | 621 "test/test_web_graphics_context_3d.cc", |
(...skipping 202 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
821 "//gpu/command_buffer/common:gles2_utils", | 824 "//gpu/command_buffer/common:gles2_utils", |
822 "//media", | 825 "//media", |
823 "//skia", | 826 "//skia", |
824 "//testing/gmock", | 827 "//testing/gmock", |
825 "//testing/gtest", | 828 "//testing/gtest", |
826 "//testing/perf", | 829 "//testing/perf", |
827 "//ui/gfx", | 830 "//ui/gfx", |
828 "//ui/gfx/geometry", | 831 "//ui/gfx/geometry", |
829 ] | 832 ] |
830 } | 833 } |
OLD | NEW |