| 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 ] | 10 ] |
| 10 | 11 |
| 11 sources = [ | 12 sources = [ |
| 12 "blimp_client_picture_cache.cc", | 13 "blimp_client_picture_cache.cc", |
| 13 "blimp_client_picture_cache.h", | 14 "blimp_client_picture_cache.h", |
| 14 "blimp_compositor.cc", | 15 "blimp_compositor.cc", |
| 15 "blimp_compositor.h", | 16 "blimp_compositor.h", |
| 16 "blimp_compositor_dependencies.cc", | 17 "blimp_compositor_dependencies.cc", |
| 17 "blimp_compositor_dependencies.h", | 18 "blimp_compositor_dependencies.h", |
| 18 "blimp_compositor_frame_sink.cc", | 19 "blimp_compositor_frame_sink.cc", |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 68 "//blimp/test:support", | 69 "//blimp/test:support", |
| 69 "//cc", | 70 "//cc", |
| 70 "//cc:test_support", | 71 "//cc:test_support", |
| 71 "//cc/proto", | 72 "//cc/proto", |
| 72 "//cc/surfaces", | 73 "//cc/surfaces", |
| 73 "//skia", | 74 "//skia", |
| 74 "//testing/gtest", | 75 "//testing/gtest", |
| 75 "//ui/events:gesture_detection", | 76 "//ui/events:gesture_detection", |
| 76 ] | 77 ] |
| 77 } | 78 } |
| OLD | NEW |