OLD | NEW |
| (Empty) |
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 | |
3 # found in the LICENSE file. | |
4 | |
5 source_set("compositor") { | |
6 visibility = [ | |
7 "//blimp/client/core/*", | |
8 "//blimp/client/test/*", | |
9 ] | |
10 | |
11 sources = [ | |
12 "blimp_client_picture_cache.cc", | |
13 "blimp_client_picture_cache.h", | |
14 "blimp_compositor.cc", | |
15 "blimp_compositor.h", | |
16 "blimp_compositor_dependencies.cc", | |
17 "blimp_compositor_dependencies.h", | |
18 "blimp_compositor_frame_sink.cc", | |
19 "blimp_compositor_frame_sink.h", | |
20 "blimp_compositor_frame_sink_proxy.h", | |
21 "blimp_image_decoder.cc", | |
22 "blimp_image_decoder.h", | |
23 "blob_channel_feature.cc", | |
24 "blob_channel_feature.h", | |
25 "blob_image_serialization_processor.cc", | |
26 "blob_image_serialization_processor.h", | |
27 ] | |
28 | |
29 deps = [ | |
30 "//blimp/client/public:public_headers", | |
31 "//blimp/client/support/compositor", | |
32 "//blimp/net", | |
33 "//cc/animation", | |
34 "//cc/proto", | |
35 "//cc/surfaces", | |
36 "//gpu/command_buffer/client", | |
37 "//third_party/libwebp", | |
38 "//ui/gl:gl", | |
39 ] | |
40 | |
41 public_deps = [ | |
42 "//base", | |
43 "//blimp/common", | |
44 "//blimp/common/proto", | |
45 "//cc", | |
46 "//skia", | |
47 ] | |
48 } | |
49 | |
50 source_set("unit_tests") { | |
51 visibility = [ "//blimp/client/core:unit_tests" ] | |
52 | |
53 testonly = true | |
54 | |
55 sources = [ | |
56 "blimp_client_picture_cache_unittest.cc", | |
57 "blimp_compositor_frame_sink_unittest.cc", | |
58 "blimp_compositor_unittest.cc", | |
59 "blob_channel_feature_unittest.cc", | |
60 ] | |
61 | |
62 deps = [ | |
63 ":compositor", | |
64 "//base", | |
65 "//blimp/client/support", | |
66 "//blimp/client/test", | |
67 "//blimp/test:support", | |
68 "//cc", | |
69 "//cc:test_support", | |
70 "//cc/proto", | |
71 "//cc/surfaces", | |
72 "//skia", | |
73 "//testing/gtest", | |
74 "//ui/events:gesture_detection", | |
75 ] | |
76 } | |
OLD | NEW |