OLD | NEW |
1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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 source_set("compositor") { | 5 source_set("compositor") { |
6 visibility = [ "//blimp/client/*" ] | 6 visibility = [ "//blimp/client/*" ] |
7 | 7 |
8 sources = [ | 8 sources = [ |
9 "blimp_client_picture_cache.cc", | 9 "blimp_client_picture_cache.cc", |
10 "blimp_client_picture_cache.h", | 10 "blimp_client_picture_cache.h", |
11 "blimp_compositor.cc", | 11 "blimp_compositor.cc", |
12 "blimp_compositor.h", | 12 "blimp_compositor.h", |
13 "blimp_compositor_dependencies.cc", | 13 "blimp_compositor_dependencies.cc", |
14 "blimp_compositor_dependencies.h", | 14 "blimp_compositor_dependencies.h", |
| 15 "blimp_compositor_frame_sink.cc", |
| 16 "blimp_compositor_frame_sink.h", |
| 17 "blimp_compositor_frame_sink_proxy.h", |
15 "blimp_compositor_manager.cc", | 18 "blimp_compositor_manager.cc", |
16 "blimp_compositor_manager.h", | 19 "blimp_compositor_manager.h", |
17 "blimp_image_decoder.cc", | 20 "blimp_image_decoder.cc", |
18 "blimp_image_decoder.h", | 21 "blimp_image_decoder.h", |
19 "blimp_output_surface.h", | |
20 "blob_channel_feature.cc", | 22 "blob_channel_feature.cc", |
21 "blob_channel_feature.h", | 23 "blob_channel_feature.h", |
22 "blob_image_serialization_processor.cc", | 24 "blob_image_serialization_processor.cc", |
23 "blob_image_serialization_processor.h", | 25 "blob_image_serialization_processor.h", |
24 "decoding_image_generator.cc", | 26 "decoding_image_generator.cc", |
25 "decoding_image_generator.h", | 27 "decoding_image_generator.h", |
26 "delegated_output_surface.cc", | |
27 "delegated_output_surface.h", | |
28 ] | 28 ] |
29 | 29 |
30 deps = [ | 30 deps = [ |
31 "//blimp/client/public:public_headers", | 31 "//blimp/client/public:public_headers", |
32 "//blimp/client/support/compositor", | 32 "//blimp/client/support/compositor", |
33 "//blimp/net", | 33 "//blimp/net", |
34 "//cc/proto", | 34 "//cc/proto", |
35 "//cc/surfaces", | 35 "//cc/surfaces", |
36 "//gpu/command_buffer/client", | 36 "//gpu/command_buffer/client", |
37 "//third_party/libwebp", | 37 "//third_party/libwebp", |
(...skipping 11 matching lines...) Expand all Loading... |
49 ] | 49 ] |
50 } | 50 } |
51 | 51 |
52 source_set("unit_tests") { | 52 source_set("unit_tests") { |
53 visibility = [ "//blimp/client/core:unit_tests" ] | 53 visibility = [ "//blimp/client/core:unit_tests" ] |
54 | 54 |
55 testonly = true | 55 testonly = true |
56 | 56 |
57 sources = [ | 57 sources = [ |
58 "blimp_client_picture_cache_unittest.cc", | 58 "blimp_client_picture_cache_unittest.cc", |
| 59 "blimp_compositor_frame_sink_unittest.cc", |
59 "blimp_compositor_manager_unittest.cc", | 60 "blimp_compositor_manager_unittest.cc", |
60 "blimp_compositor_unittest.cc", | 61 "blimp_compositor_unittest.cc", |
61 "blob_channel_feature_unittest.cc", | 62 "blob_channel_feature_unittest.cc", |
62 "delegated_output_surface_unittest.cc", | |
63 ] | 63 ] |
64 | 64 |
65 deps = [ | 65 deps = [ |
66 ":compositor", | 66 ":compositor", |
67 "//base", | 67 "//base", |
68 "//blimp/client/core/render_widget", | 68 "//blimp/client/core/render_widget", |
69 "//blimp/client/core/render_widget:test_support", | 69 "//blimp/client/core/render_widget:test_support", |
70 "//blimp/client/support", | 70 "//blimp/client/support", |
71 "//blimp/client/support:test_support", | 71 "//blimp/client/support:test_support", |
72 "//blimp/test:support", | 72 "//blimp/test:support", |
73 "//cc", | 73 "//cc", |
74 "//cc:test_support", | 74 "//cc:test_support", |
75 "//cc/proto", | 75 "//cc/proto", |
76 "//cc/surfaces", | 76 "//cc/surfaces", |
77 "//skia", | 77 "//skia", |
78 "//testing/gtest", | 78 "//testing/gtest", |
79 "//ui/events:gesture_detection", | 79 "//ui/events:gesture_detection", |
80 ] | 80 ] |
81 } | 81 } |
OLD | NEW |