| 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 import("//testing/test.gni") | 5 import("//testing/test.gni") |
| 6 | 6 |
| 7 component("cc") { | 7 component("cc") { |
| 8 sources = [ | 8 sources = [ |
| 9 "animation/animation.cc", | 9 "animation/animation.cc", |
| 10 "animation/animation.h", | 10 "animation/animation.h", |
| (...skipping 371 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 382 "resources/picture.cc", | 382 "resources/picture.cc", |
| 383 "resources/picture.h", | 383 "resources/picture.h", |
| 384 "resources/picture_layer_tiling.cc", | 384 "resources/picture_layer_tiling.cc", |
| 385 "resources/picture_layer_tiling.h", | 385 "resources/picture_layer_tiling.h", |
| 386 "resources/picture_layer_tiling_set.cc", | 386 "resources/picture_layer_tiling_set.cc", |
| 387 "resources/picture_layer_tiling_set.h", | 387 "resources/picture_layer_tiling_set.h", |
| 388 "resources/picture_pile.cc", | 388 "resources/picture_pile.cc", |
| 389 "resources/picture_pile.h", | 389 "resources/picture_pile.h", |
| 390 "resources/picture_pile_impl.cc", | 390 "resources/picture_pile_impl.cc", |
| 391 "resources/picture_pile_impl.h", | 391 "resources/picture_pile_impl.h", |
| 392 "resources/pixel_ref_map.cc", |
| 393 "resources/pixel_ref_map.h", |
| 392 "resources/pixel_buffer_tile_task_worker_pool.cc", | 394 "resources/pixel_buffer_tile_task_worker_pool.cc", |
| 393 "resources/pixel_buffer_tile_task_worker_pool.h", | 395 "resources/pixel_buffer_tile_task_worker_pool.h", |
| 394 "resources/platform_color.h", | 396 "resources/platform_color.h", |
| 395 "resources/prioritized_resource.cc", | 397 "resources/prioritized_resource.cc", |
| 396 "resources/prioritized_resource.h", | 398 "resources/prioritized_resource.h", |
| 397 "resources/prioritized_resource_manager.cc", | 399 "resources/prioritized_resource_manager.cc", |
| 398 "resources/prioritized_resource_manager.h", | 400 "resources/prioritized_resource_manager.h", |
| 399 "resources/priority_calculator.cc", | 401 "resources/priority_calculator.cc", |
| 400 "resources/priority_calculator.h", | 402 "resources/priority_calculator.h", |
| 401 "resources/raster_buffer.cc", | 403 "resources/raster_buffer.cc", |
| (...skipping 397 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 799 "quads/draw_quad_unittest.cc", | 801 "quads/draw_quad_unittest.cc", |
| 800 "quads/list_container_unittest.cc", | 802 "quads/list_container_unittest.cc", |
| 801 "quads/render_pass_unittest.cc", | 803 "quads/render_pass_unittest.cc", |
| 802 "resources/display_item_list_unittest.cc", | 804 "resources/display_item_list_unittest.cc", |
| 803 "resources/layer_quad_unittest.cc", | 805 "resources/layer_quad_unittest.cc", |
| 804 "resources/picture_layer_tiling_set_unittest.cc", | 806 "resources/picture_layer_tiling_set_unittest.cc", |
| 805 "resources/picture_layer_tiling_unittest.cc", | 807 "resources/picture_layer_tiling_unittest.cc", |
| 806 "resources/picture_pile_impl_unittest.cc", | 808 "resources/picture_pile_impl_unittest.cc", |
| 807 "resources/picture_pile_unittest.cc", | 809 "resources/picture_pile_unittest.cc", |
| 808 "resources/picture_unittest.cc", | 810 "resources/picture_unittest.cc", |
| 811 "resources/pixel_ref_map_unittest.cc", |
| 809 "resources/prioritized_resource_unittest.cc", | 812 "resources/prioritized_resource_unittest.cc", |
| 810 "resources/tile_task_worker_pool_unittest.cc", | 813 "resources/tile_task_worker_pool_unittest.cc", |
| 811 "resources/resource_provider_unittest.cc", | 814 "resources/resource_provider_unittest.cc", |
| 812 "resources/resource_update_controller_unittest.cc", | 815 "resources/resource_update_controller_unittest.cc", |
| 813 "resources/scoped_gpu_raster_unittest.cc", | 816 "resources/scoped_gpu_raster_unittest.cc", |
| 814 "resources/scoped_resource_unittest.cc", | 817 "resources/scoped_resource_unittest.cc", |
| 815 "resources/task_graph_runner_unittest.cc", | 818 "resources/task_graph_runner_unittest.cc", |
| 816 "resources/texture_mailbox_deleter_unittest.cc", | 819 "resources/texture_mailbox_deleter_unittest.cc", |
| 817 "resources/texture_uploader_unittest.cc", | 820 "resources/texture_uploader_unittest.cc", |
| 818 "resources/tile_manager_unittest.cc", | 821 "resources/tile_manager_unittest.cc", |
| (...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 914 "//media", | 917 "//media", |
| 915 "//skia", | 918 "//skia", |
| 916 "//testing/gmock", | 919 "//testing/gmock", |
| 917 "//testing/gtest", | 920 "//testing/gtest", |
| 918 "//testing/perf", | 921 "//testing/perf", |
| 919 "//ui/gfx", | 922 "//ui/gfx", |
| 920 "//ui/gfx/geometry", | 923 "//ui/gfx/geometry", |
| 921 "//ui/gl", | 924 "//ui/gl", |
| 922 ] | 925 ] |
| 923 } | 926 } |
| OLD | NEW |