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 492 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
503 "trees/property_tree.h", | 503 "trees/property_tree.h", |
504 "trees/property_tree_builder.cc", | 504 "trees/property_tree_builder.cc", |
505 "trees/property_tree_builder.h", | 505 "trees/property_tree_builder.h", |
506 "trees/proxy.h", | 506 "trees/proxy.h", |
507 "trees/proxy_common.cc", | 507 "trees/proxy_common.cc", |
508 "trees/proxy_common.h", | 508 "trees/proxy_common.h", |
509 "trees/proxy_impl.cc", | 509 "trees/proxy_impl.cc", |
510 "trees/proxy_impl.h", | 510 "trees/proxy_impl.h", |
511 "trees/proxy_main.cc", | 511 "trees/proxy_main.cc", |
512 "trees/proxy_main.h", | 512 "trees/proxy_main.h", |
| 513 "trees/remote_channel_host.cc", |
| 514 "trees/remote_channel_host.h", |
| 515 "trees/remote_channel_host_client.h", |
| 516 "trees/remote_channel_impl.cc", |
| 517 "trees/remote_channel_impl.h", |
| 518 "trees/remote_channel_main.cc", |
| 519 "trees/remote_channel_main.h", |
513 "trees/remote_proto_channel.h", | 520 "trees/remote_proto_channel.h", |
514 "trees/scoped_abort_remaining_swap_promises.h", | 521 "trees/scoped_abort_remaining_swap_promises.h", |
515 "trees/single_thread_proxy.cc", | 522 "trees/single_thread_proxy.cc", |
516 "trees/single_thread_proxy.h", | 523 "trees/single_thread_proxy.h", |
517 "trees/swap_promise_monitor.cc", | 524 "trees/swap_promise_monitor.cc", |
518 "trees/swap_promise_monitor.h", | 525 "trees/swap_promise_monitor.h", |
519 "trees/task_runner_provider.cc", | 526 "trees/task_runner_provider.cc", |
520 "trees/task_runner_provider.h", | 527 "trees/task_runner_provider.h", |
521 "trees/threaded_channel.cc", | 528 "trees/threaded_channel.cc", |
522 "trees/threaded_channel.h", | 529 "trees/threaded_channel.h", |
(...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
658 "test/pixel_test_output_surface.cc", | 665 "test/pixel_test_output_surface.cc", |
659 "test/pixel_test_output_surface.h", | 666 "test/pixel_test_output_surface.h", |
660 "test/pixel_test_software_output_device.cc", | 667 "test/pixel_test_software_output_device.cc", |
661 "test/pixel_test_software_output_device.h", | 668 "test/pixel_test_software_output_device.h", |
662 "test/pixel_test_utils.cc", | 669 "test/pixel_test_utils.cc", |
663 "test/pixel_test_utils.h", | 670 "test/pixel_test_utils.h", |
664 "test/proxy_impl_for_test.cc", | 671 "test/proxy_impl_for_test.cc", |
665 "test/proxy_impl_for_test.h", | 672 "test/proxy_impl_for_test.h", |
666 "test/proxy_main_for_test.cc", | 673 "test/proxy_main_for_test.cc", |
667 "test/proxy_main_for_test.h", | 674 "test/proxy_main_for_test.h", |
| 675 "test/remote_channel_impl_for_test.cc", |
| 676 "test/remote_channel_impl_for_test.h", |
| 677 "test/remote_proto_channel_bridge.cc", |
| 678 "test/remote_proto_channel_bridge.h", |
668 "test/render_pass_test_utils.cc", | 679 "test/render_pass_test_utils.cc", |
669 "test/render_pass_test_utils.h", | 680 "test/render_pass_test_utils.h", |
670 "test/scheduler_test_common.cc", | 681 "test/scheduler_test_common.cc", |
671 "test/scheduler_test_common.h", | 682 "test/scheduler_test_common.h", |
672 "test/skia_common.cc", | 683 "test/skia_common.cc", |
673 "test/skia_common.h", | 684 "test/skia_common.h", |
674 "test/solid_color_content_layer_client.cc", | 685 "test/solid_color_content_layer_client.cc", |
675 "test/solid_color_content_layer_client.h", | 686 "test/solid_color_content_layer_client.h", |
676 "test/surface_aggregator_test_helpers.cc", | 687 "test/surface_aggregator_test_helpers.cc", |
677 "test/surface_aggregator_test_helpers.h", | 688 "test/surface_aggregator_test_helpers.h", |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
711 configs += [ "//build/config:precompiled_headers" ] | 722 configs += [ "//build/config:precompiled_headers" ] |
712 | 723 |
713 public_deps = [ | 724 public_deps = [ |
714 ":cc", | 725 ":cc", |
715 "//gpu:test_support", | 726 "//gpu:test_support", |
716 ] | 727 ] |
717 deps = [ | 728 deps = [ |
718 "//base", | 729 "//base", |
719 "//base/test:test_support", | 730 "//base/test:test_support", |
720 "//base/third_party/dynamic_annotations", | 731 "//base/third_party/dynamic_annotations", |
| 732 "//cc/proto", |
721 "//cc/surfaces", | 733 "//cc/surfaces", |
722 "//cc/surfaces:surface_id", | 734 "//cc/surfaces:surface_id", |
723 "//gpu/command_buffer/client:gl_in_process_context", | 735 "//gpu/command_buffer/client:gl_in_process_context", |
724 "//gpu/command_buffer/client:gles2_c_lib", | 736 "//gpu/command_buffer/client:gles2_c_lib", |
725 "//gpu/command_buffer/client:gles2_implementation", | 737 "//gpu/command_buffer/client:gles2_implementation", |
726 "//gpu/command_buffer/common:gles2_utils", | 738 "//gpu/command_buffer/common:gles2_utils", |
727 "//gpu/skia_bindings", | 739 "//gpu/skia_bindings", |
728 "//media", | 740 "//media", |
729 "//skia", | 741 "//skia", |
730 "//testing/gmock", | 742 "//testing/gmock", |
(...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
890 "trees/layer_tree_host_unittest_proxy.cc", | 902 "trees/layer_tree_host_unittest_proxy.cc", |
891 "trees/layer_tree_host_unittest_record_gpu_histogram.cc", | 903 "trees/layer_tree_host_unittest_record_gpu_histogram.cc", |
892 "trees/layer_tree_host_unittest_scroll.cc", | 904 "trees/layer_tree_host_unittest_scroll.cc", |
893 "trees/layer_tree_host_unittest_video.cc", | 905 "trees/layer_tree_host_unittest_video.cc", |
894 "trees/layer_tree_impl_unittest.cc", | 906 "trees/layer_tree_impl_unittest.cc", |
895 "trees/layer_tree_settings_unittest.cc", | 907 "trees/layer_tree_settings_unittest.cc", |
896 "trees/occlusion_tracker_unittest.cc", | 908 "trees/occlusion_tracker_unittest.cc", |
897 "trees/occlusion_unittest.cc", | 909 "trees/occlusion_unittest.cc", |
898 "trees/property_tree_unittest.cc", | 910 "trees/property_tree_unittest.cc", |
899 "trees/proxy_impl_unittest.cc", | 911 "trees/proxy_impl_unittest.cc", |
| 912 "trees/remote_channel_unittest.cc", |
900 "trees/threaded_channel_unittest.cc", | 913 "trees/threaded_channel_unittest.cc", |
901 "trees/tree_synchronizer_unittest.cc", | 914 "trees/tree_synchronizer_unittest.cc", |
902 | 915 |
903 # Surfaces test files. | 916 # Surfaces test files. |
904 "surfaces/display_scheduler_unittest.cc", | 917 "surfaces/display_scheduler_unittest.cc", |
905 "surfaces/display_unittest.cc", | 918 "surfaces/display_unittest.cc", |
906 "surfaces/surface_aggregator_unittest.cc", | 919 "surfaces/surface_aggregator_unittest.cc", |
907 "surfaces/surface_display_output_surface_unittest.cc", | 920 "surfaces/surface_display_output_surface_unittest.cc", |
908 "surfaces/surface_factory_unittest.cc", | 921 "surfaces/surface_factory_unittest.cc", |
909 "surfaces/surface_hittest_unittest.cc", | 922 "surfaces/surface_hittest_unittest.cc", |
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
985 "//ui/gl", | 998 "//ui/gl", |
986 "//ui/gl:test_support", | 999 "//ui/gl:test_support", |
987 ] | 1000 ] |
988 | 1001 |
989 if (is_android) { | 1002 if (is_android) { |
990 isolate_file = "cc_perftests.isolate" | 1003 isolate_file = "cc_perftests.isolate" |
991 } | 1004 } |
992 } | 1005 } |
993 # When adding support for isolates, please have a look at run-time dependencies | 1006 # When adding support for isolates, please have a look at run-time dependencies |
994 # in the cc_unittests_run target in cc_tests.gyp. | 1007 # in the cc_unittests_run target in cc_tests.gyp. |
OLD | NEW |