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 488 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
499 "trees/property_tree.h", | 499 "trees/property_tree.h", |
500 "trees/property_tree_builder.cc", | 500 "trees/property_tree_builder.cc", |
501 "trees/property_tree_builder.h", | 501 "trees/property_tree_builder.h", |
502 "trees/proxy.h", | 502 "trees/proxy.h", |
503 "trees/proxy_common.cc", | 503 "trees/proxy_common.cc", |
504 "trees/proxy_common.h", | 504 "trees/proxy_common.h", |
505 "trees/proxy_impl.cc", | 505 "trees/proxy_impl.cc", |
506 "trees/proxy_impl.h", | 506 "trees/proxy_impl.h", |
507 "trees/proxy_main.cc", | 507 "trees/proxy_main.cc", |
508 "trees/proxy_main.h", | 508 "trees/proxy_main.h", |
| 509 "trees/remote_channel_host.cc", |
| 510 "trees/remote_channel_host.h", |
| 511 "trees/remote_channel_host_client.h", |
| 512 "trees/remote_channel_impl.cc", |
| 513 "trees/remote_channel_impl.h", |
| 514 "trees/remote_channel_main.cc", |
| 515 "trees/remote_channel_main.h", |
509 "trees/remote_proto_channel.h", | 516 "trees/remote_proto_channel.h", |
510 "trees/scoped_abort_remaining_swap_promises.h", | 517 "trees/scoped_abort_remaining_swap_promises.h", |
511 "trees/single_thread_proxy.cc", | 518 "trees/single_thread_proxy.cc", |
512 "trees/single_thread_proxy.h", | 519 "trees/single_thread_proxy.h", |
513 "trees/swap_promise_monitor.cc", | 520 "trees/swap_promise_monitor.cc", |
514 "trees/swap_promise_monitor.h", | 521 "trees/swap_promise_monitor.h", |
515 "trees/task_runner_provider.cc", | 522 "trees/task_runner_provider.cc", |
516 "trees/task_runner_provider.h", | 523 "trees/task_runner_provider.h", |
517 "trees/threaded_channel.cc", | 524 "trees/threaded_channel.cc", |
518 "trees/threaded_channel.h", | 525 "trees/threaded_channel.h", |
(...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
652 "test/pixel_test_output_surface.cc", | 659 "test/pixel_test_output_surface.cc", |
653 "test/pixel_test_output_surface.h", | 660 "test/pixel_test_output_surface.h", |
654 "test/pixel_test_software_output_device.cc", | 661 "test/pixel_test_software_output_device.cc", |
655 "test/pixel_test_software_output_device.h", | 662 "test/pixel_test_software_output_device.h", |
656 "test/pixel_test_utils.cc", | 663 "test/pixel_test_utils.cc", |
657 "test/pixel_test_utils.h", | 664 "test/pixel_test_utils.h", |
658 "test/proxy_impl_for_test.cc", | 665 "test/proxy_impl_for_test.cc", |
659 "test/proxy_impl_for_test.h", | 666 "test/proxy_impl_for_test.h", |
660 "test/proxy_main_for_test.cc", | 667 "test/proxy_main_for_test.cc", |
661 "test/proxy_main_for_test.h", | 668 "test/proxy_main_for_test.h", |
| 669 "test/remote_channel_impl_for_test.cc", |
| 670 "test/remote_channel_impl_for_test.h", |
| 671 "test/remote_proto_channel_bridge.cc", |
| 672 "test/remote_proto_channel_bridge.h", |
662 "test/render_pass_test_utils.cc", | 673 "test/render_pass_test_utils.cc", |
663 "test/render_pass_test_utils.h", | 674 "test/render_pass_test_utils.h", |
664 "test/scheduler_test_common.cc", | 675 "test/scheduler_test_common.cc", |
665 "test/scheduler_test_common.h", | 676 "test/scheduler_test_common.h", |
666 "test/skia_common.cc", | 677 "test/skia_common.cc", |
667 "test/skia_common.h", | 678 "test/skia_common.h", |
668 "test/solid_color_content_layer_client.cc", | 679 "test/solid_color_content_layer_client.cc", |
669 "test/solid_color_content_layer_client.h", | 680 "test/solid_color_content_layer_client.h", |
670 "test/surface_aggregator_test_helpers.cc", | 681 "test/surface_aggregator_test_helpers.cc", |
671 "test/surface_aggregator_test_helpers.h", | 682 "test/surface_aggregator_test_helpers.h", |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
705 configs += [ "//build/config:precompiled_headers" ] | 716 configs += [ "//build/config:precompiled_headers" ] |
706 | 717 |
707 public_deps = [ | 718 public_deps = [ |
708 ":cc", | 719 ":cc", |
709 "//gpu:test_support", | 720 "//gpu:test_support", |
710 ] | 721 ] |
711 deps = [ | 722 deps = [ |
712 "//base", | 723 "//base", |
713 "//base/test:test_support", | 724 "//base/test:test_support", |
714 "//base/third_party/dynamic_annotations", | 725 "//base/third_party/dynamic_annotations", |
| 726 "//cc/proto", |
715 "//cc/surfaces", | 727 "//cc/surfaces", |
716 "//cc/surfaces:surface_id", | 728 "//cc/surfaces:surface_id", |
717 "//gpu/command_buffer/client:gl_in_process_context", | 729 "//gpu/command_buffer/client:gl_in_process_context", |
718 "//gpu/command_buffer/client:gles2_c_lib", | 730 "//gpu/command_buffer/client:gles2_c_lib", |
719 "//gpu/command_buffer/client:gles2_implementation", | 731 "//gpu/command_buffer/client:gles2_implementation", |
720 "//gpu/command_buffer/common:gles2_utils", | 732 "//gpu/command_buffer/common:gles2_utils", |
721 "//gpu/skia_bindings", | 733 "//gpu/skia_bindings", |
722 "//media", | 734 "//media", |
723 "//skia", | 735 "//skia", |
724 "//testing/gmock", | 736 "//testing/gmock", |
(...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
880 "trees/layer_tree_host_unittest_delegated.cc", | 892 "trees/layer_tree_host_unittest_delegated.cc", |
881 "trees/layer_tree_host_unittest_occlusion.cc", | 893 "trees/layer_tree_host_unittest_occlusion.cc", |
882 "trees/layer_tree_host_unittest_picture.cc", | 894 "trees/layer_tree_host_unittest_picture.cc", |
883 "trees/layer_tree_host_unittest_proxy.cc", | 895 "trees/layer_tree_host_unittest_proxy.cc", |
884 "trees/layer_tree_host_unittest_scroll.cc", | 896 "trees/layer_tree_host_unittest_scroll.cc", |
885 "trees/layer_tree_host_unittest_video.cc", | 897 "trees/layer_tree_host_unittest_video.cc", |
886 "trees/layer_tree_impl_unittest.cc", | 898 "trees/layer_tree_impl_unittest.cc", |
887 "trees/occlusion_tracker_unittest.cc", | 899 "trees/occlusion_tracker_unittest.cc", |
888 "trees/occlusion_unittest.cc", | 900 "trees/occlusion_unittest.cc", |
889 "trees/property_tree_unittest.cc", | 901 "trees/property_tree_unittest.cc", |
| 902 "trees/remote_channel_unittest.cc", |
890 "trees/threaded_channel_unittest.cc", | 903 "trees/threaded_channel_unittest.cc", |
891 "trees/tree_synchronizer_unittest.cc", | 904 "trees/tree_synchronizer_unittest.cc", |
892 | 905 |
893 # Surfaces test files. | 906 # Surfaces test files. |
894 "surfaces/display_scheduler_unittest.cc", | 907 "surfaces/display_scheduler_unittest.cc", |
895 "surfaces/display_unittest.cc", | 908 "surfaces/display_unittest.cc", |
896 "surfaces/surface_aggregator_unittest.cc", | 909 "surfaces/surface_aggregator_unittest.cc", |
897 "surfaces/surface_display_output_surface_unittest.cc", | 910 "surfaces/surface_display_output_surface_unittest.cc", |
898 "surfaces/surface_factory_unittest.cc", | 911 "surfaces/surface_factory_unittest.cc", |
899 "surfaces/surface_hittest_unittest.cc", | 912 "surfaces/surface_hittest_unittest.cc", |
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
975 "//ui/gl", | 988 "//ui/gl", |
976 "//ui/gl:test_support", | 989 "//ui/gl:test_support", |
977 ] | 990 ] |
978 | 991 |
979 if (is_android) { | 992 if (is_android) { |
980 isolate_file = "cc_perftests.isolate" | 993 isolate_file = "cc_perftests.isolate" |
981 } | 994 } |
982 } | 995 } |
983 # When adding support for isolates, please have a look at run-time dependencies | 996 # When adding support for isolates, please have a look at run-time dependencies |
984 # in the cc_unittests_run target in cc_tests.gyp. | 997 # in the cc_unittests_run target in cc_tests.gyp. |
OLD | NEW |