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 466 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
477 "trees/occlusion.cc", | 477 "trees/occlusion.cc", |
478 "trees/occlusion.h", | 478 "trees/occlusion.h", |
479 "trees/occlusion_tracker.cc", | 479 "trees/occlusion_tracker.cc", |
480 "trees/occlusion_tracker.h", | 480 "trees/occlusion_tracker.h", |
481 "trees/property_tree.cc", | 481 "trees/property_tree.cc", |
482 "trees/property_tree.h", | 482 "trees/property_tree.h", |
483 "trees/property_tree_builder.cc", | 483 "trees/property_tree_builder.cc", |
484 "trees/property_tree_builder.h", | 484 "trees/property_tree_builder.h", |
485 "trees/proxy.cc", | 485 "trees/proxy.cc", |
486 "trees/proxy.h", | 486 "trees/proxy.h", |
| 487 "trees/proxy_common.cc", |
| 488 "trees/proxy_common.h", |
487 "trees/proxy_impl.h", | 489 "trees/proxy_impl.h", |
488 "trees/proxy_main.h", | 490 "trees/proxy_main.h", |
489 "trees/scoped_abort_remaining_swap_promises.h", | 491 "trees/scoped_abort_remaining_swap_promises.h", |
490 "trees/single_thread_proxy.cc", | 492 "trees/single_thread_proxy.cc", |
491 "trees/single_thread_proxy.h", | 493 "trees/single_thread_proxy.h", |
492 "trees/swap_promise_monitor.cc", | 494 "trees/swap_promise_monitor.cc", |
493 "trees/swap_promise_monitor.h", | 495 "trees/swap_promise_monitor.h", |
494 "trees/task_runner_provider.cc", | 496 "trees/task_runner_provider.cc", |
495 "trees/task_runner_provider.h", | 497 "trees/task_runner_provider.h", |
496 "trees/thread_proxy.cc", | 498 "trees/thread_proxy.cc", |
(...skipping 337 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
834 "trees/layer_tree_host_unittest_delegated.cc", | 836 "trees/layer_tree_host_unittest_delegated.cc", |
835 "trees/layer_tree_host_unittest_occlusion.cc", | 837 "trees/layer_tree_host_unittest_occlusion.cc", |
836 "trees/layer_tree_host_unittest_picture.cc", | 838 "trees/layer_tree_host_unittest_picture.cc", |
837 "trees/layer_tree_host_unittest_proxy.cc", | 839 "trees/layer_tree_host_unittest_proxy.cc", |
838 "trees/layer_tree_host_unittest_scroll.cc", | 840 "trees/layer_tree_host_unittest_scroll.cc", |
839 "trees/layer_tree_host_unittest_video.cc", | 841 "trees/layer_tree_host_unittest_video.cc", |
840 "trees/layer_tree_impl_unittest.cc", | 842 "trees/layer_tree_impl_unittest.cc", |
841 "trees/occlusion_tracker_unittest.cc", | 843 "trees/occlusion_tracker_unittest.cc", |
842 "trees/occlusion_unittest.cc", | 844 "trees/occlusion_unittest.cc", |
843 "trees/property_tree_unittest.cc", | 845 "trees/property_tree_unittest.cc", |
| 846 "trees/threaded_channel_unittest.cc", |
844 "trees/tree_synchronizer_unittest.cc", | 847 "trees/tree_synchronizer_unittest.cc", |
845 | 848 |
846 # Surfaces test files. | 849 # Surfaces test files. |
847 "surfaces/display_scheduler_unittest.cc", | 850 "surfaces/display_scheduler_unittest.cc", |
848 "surfaces/display_unittest.cc", | 851 "surfaces/display_unittest.cc", |
849 "surfaces/surface_aggregator_unittest.cc", | 852 "surfaces/surface_aggregator_unittest.cc", |
850 "surfaces/surface_display_output_surface_unittest.cc", | 853 "surfaces/surface_display_output_surface_unittest.cc", |
851 "surfaces/surface_factory_unittest.cc", | 854 "surfaces/surface_factory_unittest.cc", |
852 "surfaces/surface_hittest_unittest.cc", | 855 "surfaces/surface_hittest_unittest.cc", |
853 "surfaces/surface_unittest.cc", | 856 "surfaces/surface_unittest.cc", |
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
928 "//ui/gl", | 931 "//ui/gl", |
929 "//ui/gl:test_support", | 932 "//ui/gl:test_support", |
930 ] | 933 ] |
931 | 934 |
932 if (is_android) { | 935 if (is_android) { |
933 isolate_file = "cc_perftests.isolate" | 936 isolate_file = "cc_perftests.isolate" |
934 } | 937 } |
935 } | 938 } |
936 # When adding support for isolates, please have a look at run-time dependencies | 939 # When adding support for isolates, please have a look at run-time dependencies |
937 # in the cc_unittests_run target in cc_tests.gyp. | 940 # in the cc_unittests_run target in cc_tests.gyp. |
OLD | NEW |