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 386 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
397 "resources/scoped_ui_resource.h", | 397 "resources/scoped_ui_resource.h", |
398 "resources/shared_bitmap.cc", | 398 "resources/shared_bitmap.cc", |
399 "resources/shared_bitmap.h", | 399 "resources/shared_bitmap.h", |
400 "resources/shared_bitmap_manager.h", | 400 "resources/shared_bitmap_manager.h", |
401 "resources/single_release_callback.cc", | 401 "resources/single_release_callback.cc", |
402 "resources/single_release_callback.h", | 402 "resources/single_release_callback.h", |
403 "resources/single_release_callback_impl.cc", | 403 "resources/single_release_callback_impl.cc", |
404 "resources/single_release_callback_impl.h", | 404 "resources/single_release_callback_impl.h", |
405 "resources/texture_mailbox.cc", | 405 "resources/texture_mailbox.cc", |
406 "resources/texture_mailbox.h", | 406 "resources/texture_mailbox.h", |
407 "resources/texture_uploader.cc", | |
408 "resources/texture_uploader.h", | |
409 "resources/transferable_resource.cc", | 407 "resources/transferable_resource.cc", |
410 "resources/transferable_resource.h", | 408 "resources/transferable_resource.h", |
411 "resources/ui_resource_bitmap.cc", | 409 "resources/ui_resource_bitmap.cc", |
412 "resources/ui_resource_bitmap.h", | 410 "resources/ui_resource_bitmap.h", |
413 "resources/ui_resource_client.h", | 411 "resources/ui_resource_client.h", |
414 "resources/ui_resource_request.cc", | 412 "resources/ui_resource_request.cc", |
415 "resources/ui_resource_request.h", | 413 "resources/ui_resource_request.h", |
416 "resources/video_resource_updater.cc", | 414 "resources/video_resource_updater.cc", |
417 "resources/video_resource_updater.h", | 415 "resources/video_resource_updater.h", |
418 "scheduler/begin_frame_source.cc", | 416 "scheduler/begin_frame_source.cc", |
(...skipping 351 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
770 "playback/recording_source_unittest.cc", | 768 "playback/recording_source_unittest.cc", |
771 "quads/draw_quad_unittest.cc", | 769 "quads/draw_quad_unittest.cc", |
772 "quads/render_pass_unittest.cc", | 770 "quads/render_pass_unittest.cc", |
773 "raster/scoped_gpu_raster_unittest.cc", | 771 "raster/scoped_gpu_raster_unittest.cc", |
774 "raster/task_graph_runner_unittest.cc", | 772 "raster/task_graph_runner_unittest.cc", |
775 "raster/texture_compressor_etc1_unittest.cc", | 773 "raster/texture_compressor_etc1_unittest.cc", |
776 "raster/tile_task_worker_pool_unittest.cc", | 774 "raster/tile_task_worker_pool_unittest.cc", |
777 "resources/platform_color_unittest.cc", | 775 "resources/platform_color_unittest.cc", |
778 "resources/resource_provider_unittest.cc", | 776 "resources/resource_provider_unittest.cc", |
779 "resources/scoped_resource_unittest.cc", | 777 "resources/scoped_resource_unittest.cc", |
780 "resources/texture_uploader_unittest.cc", | |
781 "resources/video_resource_updater_unittest.cc", | 778 "resources/video_resource_updater_unittest.cc", |
782 "scheduler/begin_frame_source_unittest.cc", | 779 "scheduler/begin_frame_source_unittest.cc", |
783 "scheduler/delay_based_time_source_unittest.cc", | 780 "scheduler/delay_based_time_source_unittest.cc", |
784 "scheduler/scheduler_state_machine_unittest.cc", | 781 "scheduler/scheduler_state_machine_unittest.cc", |
785 "scheduler/scheduler_unittest.cc", | 782 "scheduler/scheduler_unittest.cc", |
786 "test/layer_tree_json_parser_unittest.cc", | 783 "test/layer_tree_json_parser_unittest.cc", |
787 "test/test_web_graphics_context_3d_unittest.cc", | 784 "test/test_web_graphics_context_3d_unittest.cc", |
788 "tiles/picture_layer_tiling_set_unittest.cc", | 785 "tiles/picture_layer_tiling_set_unittest.cc", |
789 "tiles/picture_layer_tiling_unittest.cc", | 786 "tiles/picture_layer_tiling_unittest.cc", |
790 "tiles/tile_manager_unittest.cc", | 787 "tiles/tile_manager_unittest.cc", |
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
887 "//ui/gfx/geometry", | 884 "//ui/gfx/geometry", |
888 "//ui/gl", | 885 "//ui/gl", |
889 ] | 886 ] |
890 | 887 |
891 if (is_android) { | 888 if (is_android) { |
892 isolate_file = "cc_perftests.isolate" | 889 isolate_file = "cc_perftests.isolate" |
893 } | 890 } |
894 } | 891 } |
895 # When adding support for isolates, please have a look at run-time dependencies | 892 # When adding support for isolates, please have a look at run-time dependencies |
896 # in the cc_unittests_run target in cc_tests.gyp. | 893 # in the cc_unittests_run target in cc_tests.gyp. |
OLD | NEW |