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