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 = [ |
| 7 "//blimp/client/app:*", # TODO(nyquist): Remove this. See crbug/651964. |
| 8 "//blimp/client/core/*", |
| 9 ] |
7 | 10 |
8 sources = [ | 11 sources = [ |
9 "blimp_client_picture_cache.cc", | 12 "blimp_client_picture_cache.cc", |
10 "blimp_client_picture_cache.h", | 13 "blimp_client_picture_cache.h", |
11 "blimp_compositor.cc", | 14 "blimp_compositor.cc", |
12 "blimp_compositor.h", | 15 "blimp_compositor.h", |
13 "blimp_compositor_dependencies.cc", | 16 "blimp_compositor_dependencies.cc", |
14 "blimp_compositor_dependencies.h", | 17 "blimp_compositor_dependencies.h", |
15 "blimp_compositor_frame_sink.cc", | 18 "blimp_compositor_frame_sink.cc", |
16 "blimp_compositor_frame_sink.h", | 19 "blimp_compositor_frame_sink.h", |
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
72 "//blimp/test:support", | 75 "//blimp/test:support", |
73 "//cc", | 76 "//cc", |
74 "//cc:test_support", | 77 "//cc:test_support", |
75 "//cc/proto", | 78 "//cc/proto", |
76 "//cc/surfaces", | 79 "//cc/surfaces", |
77 "//skia", | 80 "//skia", |
78 "//testing/gtest", | 81 "//testing/gtest", |
79 "//ui/events:gesture_detection", | 82 "//ui/events:gesture_detection", |
80 ] | 83 ] |
81 } | 84 } |
OLD | NEW |