Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(134)

Side by Side Diff: cc/BUILD.gn

Issue 1513643010: cc:: Add remote mode to the compositor (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed vmpstr's comments. Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | cc/cc.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 498 matching lines...) Expand 10 before | Expand all | Expand 10 after
509 "trees/property_tree.h", 509 "trees/property_tree.h",
510 "trees/property_tree_builder.cc", 510 "trees/property_tree_builder.cc",
511 "trees/property_tree_builder.h", 511 "trees/property_tree_builder.h",
512 "trees/proxy.h", 512 "trees/proxy.h",
513 "trees/proxy_common.cc", 513 "trees/proxy_common.cc",
514 "trees/proxy_common.h", 514 "trees/proxy_common.h",
515 "trees/proxy_impl.cc", 515 "trees/proxy_impl.cc",
516 "trees/proxy_impl.h", 516 "trees/proxy_impl.h",
517 "trees/proxy_main.cc", 517 "trees/proxy_main.cc",
518 "trees/proxy_main.h", 518 "trees/proxy_main.h",
519 "trees/remote_channel_impl.cc",
520 "trees/remote_channel_impl.h",
521 "trees/remote_channel_main.cc",
522 "trees/remote_channel_main.h",
519 "trees/remote_proto_channel.h", 523 "trees/remote_proto_channel.h",
520 "trees/scoped_abort_remaining_swap_promises.h", 524 "trees/scoped_abort_remaining_swap_promises.h",
521 "trees/single_thread_proxy.cc", 525 "trees/single_thread_proxy.cc",
522 "trees/single_thread_proxy.h", 526 "trees/single_thread_proxy.h",
523 "trees/swap_promise_monitor.cc", 527 "trees/swap_promise_monitor.cc",
524 "trees/swap_promise_monitor.h", 528 "trees/swap_promise_monitor.h",
525 "trees/task_runner_provider.cc", 529 "trees/task_runner_provider.cc",
526 "trees/task_runner_provider.h", 530 "trees/task_runner_provider.h",
527 "trees/threaded_channel.cc", 531 "trees/threaded_channel.cc",
528 "trees/threaded_channel.h", 532 "trees/threaded_channel.h",
(...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after
664 "test/pixel_test_output_surface.cc", 668 "test/pixel_test_output_surface.cc",
665 "test/pixel_test_output_surface.h", 669 "test/pixel_test_output_surface.h",
666 "test/pixel_test_software_output_device.cc", 670 "test/pixel_test_software_output_device.cc",
667 "test/pixel_test_software_output_device.h", 671 "test/pixel_test_software_output_device.h",
668 "test/pixel_test_utils.cc", 672 "test/pixel_test_utils.cc",
669 "test/pixel_test_utils.h", 673 "test/pixel_test_utils.h",
670 "test/proxy_impl_for_test.cc", 674 "test/proxy_impl_for_test.cc",
671 "test/proxy_impl_for_test.h", 675 "test/proxy_impl_for_test.h",
672 "test/proxy_main_for_test.cc", 676 "test/proxy_main_for_test.cc",
673 "test/proxy_main_for_test.h", 677 "test/proxy_main_for_test.h",
678 "test/remote_channel_impl_for_test.cc",
679 "test/remote_channel_impl_for_test.h",
680 "test/remote_proto_channel_bridge.cc",
681 "test/remote_proto_channel_bridge.h",
674 "test/render_pass_test_utils.cc", 682 "test/render_pass_test_utils.cc",
675 "test/render_pass_test_utils.h", 683 "test/render_pass_test_utils.h",
676 "test/scheduler_test_common.cc", 684 "test/scheduler_test_common.cc",
677 "test/scheduler_test_common.h", 685 "test/scheduler_test_common.h",
678 "test/skia_common.cc", 686 "test/skia_common.cc",
679 "test/skia_common.h", 687 "test/skia_common.h",
680 "test/solid_color_content_layer_client.cc", 688 "test/solid_color_content_layer_client.cc",
681 "test/solid_color_content_layer_client.h", 689 "test/solid_color_content_layer_client.h",
682 "test/surface_aggregator_test_helpers.cc", 690 "test/surface_aggregator_test_helpers.cc",
683 "test/surface_aggregator_test_helpers.h", 691 "test/surface_aggregator_test_helpers.h",
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
717 configs += [ "//build/config:precompiled_headers" ] 725 configs += [ "//build/config:precompiled_headers" ]
718 726
719 public_deps = [ 727 public_deps = [
720 ":cc", 728 ":cc",
721 "//gpu:test_support", 729 "//gpu:test_support",
722 ] 730 ]
723 deps = [ 731 deps = [
724 "//base", 732 "//base",
725 "//base/test:test_support", 733 "//base/test:test_support",
726 "//base/third_party/dynamic_annotations", 734 "//base/third_party/dynamic_annotations",
735 "//cc/proto",
727 "//cc/surfaces", 736 "//cc/surfaces",
728 "//cc/surfaces:surface_id", 737 "//cc/surfaces:surface_id",
729 "//gpu/command_buffer/client:gl_in_process_context", 738 "//gpu/command_buffer/client:gl_in_process_context",
730 "//gpu/command_buffer/client:gles2_c_lib", 739 "//gpu/command_buffer/client:gles2_c_lib",
731 "//gpu/command_buffer/client:gles2_implementation", 740 "//gpu/command_buffer/client:gles2_implementation",
732 "//gpu/command_buffer/common:gles2_utils", 741 "//gpu/command_buffer/common:gles2_utils",
733 "//gpu/skia_bindings", 742 "//gpu/skia_bindings",
734 "//media", 743 "//media",
735 "//skia", 744 "//skia",
736 "//testing/gmock", 745 "//testing/gmock",
(...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after
901 "trees/layer_tree_host_unittest_scroll.cc", 910 "trees/layer_tree_host_unittest_scroll.cc",
902 "trees/layer_tree_host_unittest_serialization.cc", 911 "trees/layer_tree_host_unittest_serialization.cc",
903 "trees/layer_tree_host_unittest_video.cc", 912 "trees/layer_tree_host_unittest_video.cc",
904 "trees/layer_tree_impl_unittest.cc", 913 "trees/layer_tree_impl_unittest.cc",
905 "trees/layer_tree_settings_unittest.cc", 914 "trees/layer_tree_settings_unittest.cc",
906 "trees/occlusion_tracker_unittest.cc", 915 "trees/occlusion_tracker_unittest.cc",
907 "trees/occlusion_unittest.cc", 916 "trees/occlusion_unittest.cc",
908 "trees/property_tree_unittest.cc", 917 "trees/property_tree_unittest.cc",
909 "trees/proxy_common_unittest.cc", 918 "trees/proxy_common_unittest.cc",
910 "trees/proxy_impl_unittest.cc", 919 "trees/proxy_impl_unittest.cc",
920 "trees/remote_channel_unittest.cc",
911 "trees/threaded_channel_unittest.cc", 921 "trees/threaded_channel_unittest.cc",
912 "trees/tree_synchronizer_unittest.cc", 922 "trees/tree_synchronizer_unittest.cc",
913 923
914 # Surfaces test files. 924 # Surfaces test files.
915 "surfaces/display_scheduler_unittest.cc", 925 "surfaces/display_scheduler_unittest.cc",
916 "surfaces/display_unittest.cc", 926 "surfaces/display_unittest.cc",
917 "surfaces/surface_aggregator_unittest.cc", 927 "surfaces/surface_aggregator_unittest.cc",
918 "surfaces/surface_display_output_surface_unittest.cc", 928 "surfaces/surface_display_output_surface_unittest.cc",
919 "surfaces/surface_factory_unittest.cc", 929 "surfaces/surface_factory_unittest.cc",
920 "surfaces/surface_hittest_unittest.cc", 930 "surfaces/surface_hittest_unittest.cc",
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
996 "//ui/gl", 1006 "//ui/gl",
997 "//ui/gl:test_support", 1007 "//ui/gl:test_support",
998 ] 1008 ]
999 1009
1000 if (is_android) { 1010 if (is_android) {
1001 isolate_file = "cc_perftests.isolate" 1011 isolate_file = "cc_perftests.isolate"
1002 } 1012 }
1003 } 1013 }
1004 # When adding support for isolates, please have a look at run-time dependencies 1014 # When adding support for isolates, please have a look at run-time dependencies
1005 # in the cc_unittests_run target in cc_tests.gyp. 1015 # in the cc_unittests_run target in cc_tests.gyp.
OLDNEW
« no previous file with comments | « no previous file | cc/cc.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698