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("//build/config/ui.gni") | 5 import("//build/config/ui.gni") |
6 import("//testing/test.gni") | 6 import("//testing/test.gni") |
7 | 7 |
8 component("cc") { | 8 component("cc") { |
9 sources = [ | 9 sources = [ |
10 "animation/animation.cc", | 10 "animation/animation.cc", |
(...skipping 677 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
688 "test/ordered_texture_map.cc", | 688 "test/ordered_texture_map.cc", |
689 "test/ordered_texture_map.h", | 689 "test/ordered_texture_map.h", |
690 "test/paths.cc", | 690 "test/paths.cc", |
691 "test/paths.h", | 691 "test/paths.h", |
692 "test/picture_cache_model.cc", | 692 "test/picture_cache_model.cc", |
693 "test/picture_cache_model.h", | 693 "test/picture_cache_model.h", |
694 "test/pixel_comparator.cc", | 694 "test/pixel_comparator.cc", |
695 "test/pixel_comparator.h", | 695 "test/pixel_comparator.h", |
696 "test/pixel_test.cc", | 696 "test/pixel_test.cc", |
697 "test/pixel_test.h", | 697 "test/pixel_test.h", |
698 "test/pixel_test_delegating_output_surface.cc", | |
699 "test/pixel_test_delegating_output_surface.h", | |
700 "test/pixel_test_output_surface.cc", | 698 "test/pixel_test_output_surface.cc", |
701 "test/pixel_test_output_surface.h", | 699 "test/pixel_test_output_surface.h", |
702 "test/pixel_test_software_output_device.cc", | 700 "test/pixel_test_software_output_device.cc", |
703 "test/pixel_test_software_output_device.h", | 701 "test/pixel_test_software_output_device.h", |
704 "test/pixel_test_utils.cc", | 702 "test/pixel_test_utils.cc", |
705 "test/pixel_test_utils.h", | 703 "test/pixel_test_utils.h", |
706 "test/proxy_impl_for_test.cc", | 704 "test/proxy_impl_for_test.cc", |
707 "test/proxy_impl_for_test.h", | 705 "test/proxy_impl_for_test.h", |
708 "test/proxy_main_for_test.cc", | 706 "test/proxy_main_for_test.cc", |
709 "test/proxy_main_for_test.h", | 707 "test/proxy_main_for_test.h", |
(...skipping 12 matching lines...) Expand all Loading... |
722 "test/surface_aggregator_test_helpers.cc", | 720 "test/surface_aggregator_test_helpers.cc", |
723 "test/surface_aggregator_test_helpers.h", | 721 "test/surface_aggregator_test_helpers.h", |
724 "test/surface_hittest_test_helpers.cc", | 722 "test/surface_hittest_test_helpers.cc", |
725 "test/surface_hittest_test_helpers.h", | 723 "test/surface_hittest_test_helpers.h", |
726 "test/task_graph_runner_test_template.cc", | 724 "test/task_graph_runner_test_template.cc", |
727 "test/task_graph_runner_test_template.h", | 725 "test/task_graph_runner_test_template.h", |
728 "test/test_context_provider.cc", | 726 "test/test_context_provider.cc", |
729 "test/test_context_provider.h", | 727 "test/test_context_provider.h", |
730 "test/test_context_support.cc", | 728 "test/test_context_support.cc", |
731 "test/test_context_support.h", | 729 "test/test_context_support.h", |
| 730 "test/test_delegating_output_surface.cc", |
| 731 "test/test_delegating_output_surface.h", |
732 "test/test_gles2_interface.cc", | 732 "test/test_gles2_interface.cc", |
733 "test/test_gles2_interface.h", | 733 "test/test_gles2_interface.h", |
734 "test/test_gpu_memory_buffer_manager.cc", | 734 "test/test_gpu_memory_buffer_manager.cc", |
735 "test/test_gpu_memory_buffer_manager.h", | 735 "test/test_gpu_memory_buffer_manager.h", |
736 "test/test_hooks.cc", | 736 "test/test_hooks.cc", |
737 "test/test_hooks.h", | 737 "test/test_hooks.h", |
738 "test/test_image_factory.cc", | 738 "test/test_image_factory.cc", |
739 "test/test_image_factory.h", | 739 "test/test_image_factory.h", |
740 "test/test_in_process_context_provider.cc", | 740 "test/test_in_process_context_provider.cc", |
741 "test/test_in_process_context_provider.h", | 741 "test/test_in_process_context_provider.h", |
(...skipping 301 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1043 "//ui/gfx/geometry", | 1043 "//ui/gfx/geometry", |
1044 "//ui/gl", | 1044 "//ui/gl", |
1045 "//ui/gl:test_support", | 1045 "//ui/gl:test_support", |
1046 ] | 1046 ] |
1047 | 1047 |
1048 # This target should not require the Chrome executable to run. | 1048 # This target should not require the Chrome executable to run. |
1049 assert_no_deps = [ "//chrome" ] | 1049 assert_no_deps = [ "//chrome" ] |
1050 } | 1050 } |
1051 # When adding support for isolates, please have a look at run-time dependencies | 1051 # When adding support for isolates, please have a look at run-time dependencies |
1052 # in the cc_unittests_run target in cc_tests.gyp. | 1052 # in the cc_unittests_run target in cc_tests.gyp. |
OLD | NEW |