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("//build/config/ui.gni") | 5 import("//build/config/ui.gni") |
6 import("//testing/test.gni") | 6 import("//testing/test.gni") |
7 | 7 |
8 component("cc") { | 8 component("cc") { |
9 sources = [ | 9 sources = [ |
10 "animation/animation.cc", | 10 "animation/animation.cc", |
(...skipping 520 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
531 "trees/remote_channel_impl.cc", | 531 "trees/remote_channel_impl.cc", |
532 "trees/remote_channel_impl.h", | 532 "trees/remote_channel_impl.h", |
533 "trees/remote_channel_main.cc", | 533 "trees/remote_channel_main.cc", |
534 "trees/remote_channel_main.h", | 534 "trees/remote_channel_main.h", |
535 "trees/remote_proto_channel.h", | 535 "trees/remote_proto_channel.h", |
536 "trees/scoped_abort_remaining_swap_promises.h", | 536 "trees/scoped_abort_remaining_swap_promises.h", |
537 "trees/scroll_node.cc", | 537 "trees/scroll_node.cc", |
538 "trees/scroll_node.h", | 538 "trees/scroll_node.h", |
539 "trees/single_thread_proxy.cc", | 539 "trees/single_thread_proxy.cc", |
540 "trees/single_thread_proxy.h", | 540 "trees/single_thread_proxy.h", |
| 541 "trees/surface_sequence_generator.cc", |
| 542 "trees/surface_sequence_generator.h", |
| 543 "trees/swap_promise_manager.cc", |
| 544 "trees/swap_promise_manager.h", |
541 "trees/swap_promise_monitor.cc", | 545 "trees/swap_promise_monitor.cc", |
542 "trees/swap_promise_monitor.h", | 546 "trees/swap_promise_monitor.h", |
543 "trees/task_runner_provider.cc", | 547 "trees/task_runner_provider.cc", |
544 "trees/task_runner_provider.h", | 548 "trees/task_runner_provider.h", |
545 "trees/threaded_channel.cc", | 549 "trees/threaded_channel.cc", |
546 "trees/threaded_channel.h", | 550 "trees/threaded_channel.h", |
547 "trees/transform_node.cc", | 551 "trees/transform_node.cc", |
548 "trees/transform_node.h", | 552 "trees/transform_node.h", |
549 "trees/tree_synchronizer.cc", | 553 "trees/tree_synchronizer.cc", |
550 "trees/tree_synchronizer.h", | 554 "trees/tree_synchronizer.h", |
(...skipping 380 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
931 "trees/layer_tree_host_unittest_record_gpu_histogram.cc", | 935 "trees/layer_tree_host_unittest_record_gpu_histogram.cc", |
932 "trees/layer_tree_host_unittest_remote_server.cc", | 936 "trees/layer_tree_host_unittest_remote_server.cc", |
933 "trees/layer_tree_host_unittest_scroll.cc", | 937 "trees/layer_tree_host_unittest_scroll.cc", |
934 "trees/layer_tree_host_unittest_serialization.cc", | 938 "trees/layer_tree_host_unittest_serialization.cc", |
935 "trees/layer_tree_host_unittest_video.cc", | 939 "trees/layer_tree_host_unittest_video.cc", |
936 "trees/layer_tree_impl_unittest.cc", | 940 "trees/layer_tree_impl_unittest.cc", |
937 "trees/occlusion_tracker_unittest.cc", | 941 "trees/occlusion_tracker_unittest.cc", |
938 "trees/occlusion_unittest.cc", | 942 "trees/occlusion_unittest.cc", |
939 "trees/property_tree_unittest.cc", | 943 "trees/property_tree_unittest.cc", |
940 "trees/proxy_common_unittest.cc", | 944 "trees/proxy_common_unittest.cc", |
| 945 "trees/surface_sequence_generator_unittest.cc", |
| 946 "trees/swap_promise_manager_unittest.cc", |
941 "trees/tree_synchronizer_unittest.cc", | 947 "trees/tree_synchronizer_unittest.cc", |
942 | 948 |
943 # Surfaces test files. | 949 # Surfaces test files. |
944 "surfaces/display_scheduler_unittest.cc", | 950 "surfaces/display_scheduler_unittest.cc", |
945 "surfaces/display_unittest.cc", | 951 "surfaces/display_unittest.cc", |
946 "surfaces/surface_aggregator_unittest.cc", | 952 "surfaces/surface_aggregator_unittest.cc", |
947 "surfaces/surface_display_output_surface_unittest.cc", | 953 "surfaces/surface_display_output_surface_unittest.cc", |
948 "surfaces/surface_factory_unittest.cc", | 954 "surfaces/surface_factory_unittest.cc", |
949 "surfaces/surface_hittest_unittest.cc", | 955 "surfaces/surface_hittest_unittest.cc", |
950 "surfaces/surface_manager_unittest.cc", | 956 "surfaces/surface_manager_unittest.cc", |
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1034 "//testing/perf", | 1040 "//testing/perf", |
1035 "//ui/gfx", | 1041 "//ui/gfx", |
1036 "//ui/gfx/geometry", | 1042 "//ui/gfx/geometry", |
1037 "//ui/gl", | 1043 "//ui/gl", |
1038 "//ui/gl:test_support", | 1044 "//ui/gl:test_support", |
1039 ] | 1045 ] |
1040 | 1046 |
1041 # This target should not require the Chrome executable to run. | 1047 # This target should not require the Chrome executable to run. |
1042 assert_no_deps = [ "//chrome" ] | 1048 assert_no_deps = [ "//chrome" ] |
1043 } | 1049 } |
OLD | NEW |