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

Side by Side Diff: cc/BUILD.gn

Issue 1506023008: [NOT LANDED] Revert of cc: Split ThreadProxy into ProxyMain and ProxyImpl (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years 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 484 matching lines...) Expand 10 before | Expand all | Expand 10 after
495 "trees/occlusion.h", 495 "trees/occlusion.h",
496 "trees/occlusion_tracker.cc", 496 "trees/occlusion_tracker.cc",
497 "trees/occlusion_tracker.h", 497 "trees/occlusion_tracker.h",
498 "trees/property_tree.cc", 498 "trees/property_tree.cc",
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",
506 "trees/proxy_impl.h", 505 "trees/proxy_impl.h",
507 "trees/proxy_main.cc",
508 "trees/proxy_main.h", 506 "trees/proxy_main.h",
509 "trees/remote_proto_channel.h", 507 "trees/remote_proto_channel.h",
510 "trees/scoped_abort_remaining_swap_promises.h", 508 "trees/scoped_abort_remaining_swap_promises.h",
511 "trees/single_thread_proxy.cc", 509 "trees/single_thread_proxy.cc",
512 "trees/single_thread_proxy.h", 510 "trees/single_thread_proxy.h",
513 "trees/swap_promise_monitor.cc", 511 "trees/swap_promise_monitor.cc",
514 "trees/swap_promise_monitor.h", 512 "trees/swap_promise_monitor.h",
515 "trees/task_runner_provider.cc", 513 "trees/task_runner_provider.cc",
516 "trees/task_runner_provider.h", 514 "trees/task_runner_provider.h",
515 "trees/thread_proxy.cc",
516 "trees/thread_proxy.h",
517 "trees/threaded_channel.cc", 517 "trees/threaded_channel.cc",
518 "trees/threaded_channel.h", 518 "trees/threaded_channel.h",
519 "trees/tree_synchronizer.cc", 519 "trees/tree_synchronizer.cc",
520 "trees/tree_synchronizer.h", 520 "trees/tree_synchronizer.h",
521 ] 521 ]
522 522
523 if (target_cpu == "x86" || target_cpu == "x64") { 523 if (target_cpu == "x86" || target_cpu == "x64") {
524 sources += [ 524 sources += [
525 "raster/texture_compressor_etc1_sse.cc", 525 "raster/texture_compressor_etc1_sse.cc",
526 "raster/texture_compressor_etc1_sse.h", 526 "raster/texture_compressor_etc1_sse.h",
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after
648 "test/pixel_comparator.cc", 648 "test/pixel_comparator.cc",
649 "test/pixel_comparator.h", 649 "test/pixel_comparator.h",
650 "test/pixel_test.cc", 650 "test/pixel_test.cc",
651 "test/pixel_test.h", 651 "test/pixel_test.h",
652 "test/pixel_test_output_surface.cc", 652 "test/pixel_test_output_surface.cc",
653 "test/pixel_test_output_surface.h", 653 "test/pixel_test_output_surface.h",
654 "test/pixel_test_software_output_device.cc", 654 "test/pixel_test_software_output_device.cc",
655 "test/pixel_test_software_output_device.h", 655 "test/pixel_test_software_output_device.h",
656 "test/pixel_test_utils.cc", 656 "test/pixel_test_utils.cc",
657 "test/pixel_test_utils.h", 657 "test/pixel_test_utils.h",
658 "test/proxy_impl_for_test.cc",
659 "test/proxy_impl_for_test.h",
660 "test/proxy_main_for_test.cc",
661 "test/proxy_main_for_test.h",
662 "test/render_pass_test_utils.cc", 658 "test/render_pass_test_utils.cc",
663 "test/render_pass_test_utils.h", 659 "test/render_pass_test_utils.h",
664 "test/scheduler_test_common.cc", 660 "test/scheduler_test_common.cc",
665 "test/scheduler_test_common.h", 661 "test/scheduler_test_common.h",
666 "test/skia_common.cc", 662 "test/skia_common.cc",
667 "test/skia_common.h", 663 "test/skia_common.h",
668 "test/solid_color_content_layer_client.cc", 664 "test/solid_color_content_layer_client.cc",
669 "test/solid_color_content_layer_client.h", 665 "test/solid_color_content_layer_client.h",
670 "test/surface_aggregator_test_helpers.cc", 666 "test/surface_aggregator_test_helpers.cc",
671 "test/surface_aggregator_test_helpers.h", 667 "test/surface_aggregator_test_helpers.h",
672 "test/surface_hittest_test_helpers.cc", 668 "test/surface_hittest_test_helpers.cc",
673 "test/surface_hittest_test_helpers.h", 669 "test/surface_hittest_test_helpers.h",
674 "test/task_graph_runner_test_template.cc", 670 "test/task_graph_runner_test_template.cc",
675 "test/task_graph_runner_test_template.h", 671 "test/task_graph_runner_test_template.h",
676 "test/test_context_provider.cc", 672 "test/test_context_provider.cc",
677 "test/test_context_provider.h", 673 "test/test_context_provider.h",
678 "test/test_context_support.cc", 674 "test/test_context_support.cc",
679 "test/test_context_support.h", 675 "test/test_context_support.h",
680 "test/test_gles2_interface.cc", 676 "test/test_gles2_interface.cc",
681 "test/test_gles2_interface.h", 677 "test/test_gles2_interface.h",
682 "test/test_gpu_memory_buffer_manager.cc", 678 "test/test_gpu_memory_buffer_manager.cc",
683 "test/test_gpu_memory_buffer_manager.h", 679 "test/test_gpu_memory_buffer_manager.h",
684 "test/test_hooks.cc",
685 "test/test_hooks.h",
686 "test/test_image_factory.cc", 680 "test/test_image_factory.cc",
687 "test/test_image_factory.h", 681 "test/test_image_factory.h",
688 "test/test_in_process_context_provider.cc", 682 "test/test_in_process_context_provider.cc",
689 "test/test_in_process_context_provider.h", 683 "test/test_in_process_context_provider.h",
690 "test/test_occlusion_tracker.h", 684 "test/test_occlusion_tracker.h",
691 "test/test_shared_bitmap_manager.cc", 685 "test/test_shared_bitmap_manager.cc",
692 "test/test_shared_bitmap_manager.h", 686 "test/test_shared_bitmap_manager.h",
693 "test/test_task_graph_runner.cc", 687 "test/test_task_graph_runner.cc",
694 "test/test_task_graph_runner.h", 688 "test/test_task_graph_runner.h",
695 "test/test_texture.cc", 689 "test/test_texture.cc",
696 "test/test_texture.h", 690 "test/test_texture.h",
697 "test/test_tile_priorities.cc", 691 "test/test_tile_priorities.cc",
698 "test/test_tile_priorities.h", 692 "test/test_tile_priorities.h",
699 "test/test_web_graphics_context_3d.cc", 693 "test/test_web_graphics_context_3d.cc",
700 "test/test_web_graphics_context_3d.h", 694 "test/test_web_graphics_context_3d.h",
701 "test/threaded_channel_for_test.cc",
702 "test/threaded_channel_for_test.h",
703 ] 695 ]
704 696
705 configs += [ "//build/config:precompiled_headers" ] 697 configs += [ "//build/config:precompiled_headers" ]
706 698
707 public_deps = [ 699 public_deps = [
708 ":cc", 700 ":cc",
709 "//gpu:test_support", 701 "//gpu:test_support",
710 ] 702 ]
711 deps = [ 703 deps = [
712 "//base", 704 "//base",
(...skipping 262 matching lines...) Expand 10 before | Expand all | Expand 10 after
975 "//ui/gl", 967 "//ui/gl",
976 "//ui/gl:test_support", 968 "//ui/gl:test_support",
977 ] 969 ]
978 970
979 if (is_android) { 971 if (is_android) {
980 isolate_file = "cc_perftests.isolate" 972 isolate_file = "cc_perftests.isolate"
981 } 973 }
982 } 974 }
983 # When adding support for isolates, please have a look at run-time dependencies 975 # When adding support for isolates, please have a look at run-time dependencies
984 # in the cc_unittests_run target in cc_tests.gyp. 976 # 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