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 = [ | 6 visibility = [ |
7 "//blimp/client/app:*", # TODO(nyquist): Remove this. See crbug/651964. | 7 "//blimp/client/app:*", # TODO(nyquist): Remove this. See crbug/651964. |
8 "//blimp/client/core/*", | 8 "//blimp/client/core/*", |
9 "//blimp/client/test/*", | 9 "//blimp/client/test/*", |
10 ] | 10 ] |
(...skipping 15 matching lines...) Expand all Loading... |
26 "blob_image_serialization_processor.cc", | 26 "blob_image_serialization_processor.cc", |
27 "blob_image_serialization_processor.h", | 27 "blob_image_serialization_processor.h", |
28 "decoding_image_generator.cc", | 28 "decoding_image_generator.cc", |
29 "decoding_image_generator.h", | 29 "decoding_image_generator.h", |
30 ] | 30 ] |
31 | 31 |
32 deps = [ | 32 deps = [ |
33 "//blimp/client/public:public_headers", | 33 "//blimp/client/public:public_headers", |
34 "//blimp/client/support/compositor", | 34 "//blimp/client/support/compositor", |
35 "//blimp/net", | 35 "//blimp/net", |
| 36 "//cc/animation", |
36 "//cc/proto", | 37 "//cc/proto", |
37 "//cc/surfaces", | 38 "//cc/surfaces", |
38 "//gpu/command_buffer/client", | 39 "//gpu/command_buffer/client", |
39 "//third_party/libwebp", | 40 "//third_party/libwebp", |
40 "//ui/gl:gl", | 41 "//ui/gl:gl", |
41 ] | 42 ] |
42 | 43 |
43 public_deps = [ | 44 public_deps = [ |
44 "//base", | 45 "//base", |
45 "//blimp/common", | 46 "//blimp/common", |
(...skipping 23 matching lines...) Expand all Loading... |
69 "//blimp/test:support", | 70 "//blimp/test:support", |
70 "//cc", | 71 "//cc", |
71 "//cc:test_support", | 72 "//cc:test_support", |
72 "//cc/proto", | 73 "//cc/proto", |
73 "//cc/surfaces", | 74 "//cc/surfaces", |
74 "//skia", | 75 "//skia", |
75 "//testing/gtest", | 76 "//testing/gtest", |
76 "//ui/events:gesture_detection", | 77 "//ui/events:gesture_detection", |
77 ] | 78 ] |
78 } | 79 } |
OLD | NEW |