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_manager.cc", | 15 "blimp_compositor_manager.cc", |
16 "blimp_compositor_manager.h", | 16 "blimp_compositor_manager.h", |
17 "blimp_image_decoder.cc", | 17 "blimp_image_decoder.cc", |
18 "blimp_image_decoder.h", | 18 "blimp_image_decoder.h", |
19 "blimp_output_surface.h", | 19 "blimp_output_surface.h", |
| 20 "blob_channel_feature.cc", |
| 21 "blob_channel_feature.h", |
20 "blob_image_serialization_processor.cc", | 22 "blob_image_serialization_processor.cc", |
21 "blob_image_serialization_processor.h", | 23 "blob_image_serialization_processor.h", |
22 "decoding_image_generator.cc", | 24 "decoding_image_generator.cc", |
23 "decoding_image_generator.h", | 25 "decoding_image_generator.h", |
24 "delegated_output_surface.cc", | 26 "delegated_output_surface.cc", |
25 "delegated_output_surface.h", | 27 "delegated_output_surface.h", |
26 ] | 28 ] |
27 | 29 |
28 deps = [ | 30 deps = [ |
29 "//blimp/client/public:public_headers", | 31 "//blimp/client/public:public_headers", |
(...skipping 18 matching lines...) Expand all Loading... |
48 | 50 |
49 source_set("unit_tests") { | 51 source_set("unit_tests") { |
50 visibility = [ "//blimp/client/core:unit_tests" ] | 52 visibility = [ "//blimp/client/core:unit_tests" ] |
51 | 53 |
52 testonly = true | 54 testonly = true |
53 | 55 |
54 sources = [ | 56 sources = [ |
55 "blimp_client_picture_cache_unittest.cc", | 57 "blimp_client_picture_cache_unittest.cc", |
56 "blimp_compositor_manager_unittest.cc", | 58 "blimp_compositor_manager_unittest.cc", |
57 "blimp_compositor_unittest.cc", | 59 "blimp_compositor_unittest.cc", |
| 60 "blob_channel_feature_unittest.cc", |
58 "delegated_output_surface_unittest.cc", | 61 "delegated_output_surface_unittest.cc", |
59 ] | 62 ] |
60 | 63 |
61 deps = [ | 64 deps = [ |
62 ":compositor", | 65 ":compositor", |
63 "//base", | 66 "//base", |
64 "//blimp/client/core/render_widget", | 67 "//blimp/client/core/render_widget", |
65 "//blimp/client/core/render_widget:test_support", | 68 "//blimp/client/core/render_widget:test_support", |
66 "//blimp/client/support", | 69 "//blimp/client/support", |
67 "//blimp/client/support:test_support", | 70 "//blimp/client/support:test_support", |
68 "//blimp/test:support", | 71 "//blimp/test:support", |
69 "//cc", | 72 "//cc", |
70 "//cc:test_support", | 73 "//cc:test_support", |
71 "//cc/proto", | 74 "//cc/proto", |
72 "//cc/surfaces", | 75 "//cc/surfaces", |
73 "//skia", | 76 "//skia", |
74 "//testing/gtest", | 77 "//testing/gtest", |
75 "//ui/events:gesture_detection", | 78 "//ui/events:gesture_detection", |
76 ] | 79 ] |
77 } | 80 } |
OLD | NEW |