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 = [ "//blimp/client/*" ] |
7 | 7 |
8 sources = [ | 8 sources = [ |
9 "blimp_client_picture_cache.cc", | 9 "blimp_client_picture_cache.cc", |
10 "blimp_client_picture_cache.h", | 10 "blimp_client_picture_cache.h", |
(...skipping 12 matching lines...) Expand all Loading... |
23 | 23 |
24 public_deps = [ | 24 public_deps = [ |
25 "//base", | 25 "//base", |
26 "//blimp/common", | 26 "//blimp/common", |
27 "//blimp/common/proto", | 27 "//blimp/common/proto", |
28 "//cc", | 28 "//cc", |
29 "//skia", | 29 "//skia", |
30 ] | 30 ] |
31 } | 31 } |
32 | 32 |
| 33 source_set("compositor_support") { |
| 34 sources = [ |
| 35 "delegated_output_surface.cc", |
| 36 "delegated_output_surface.h", |
| 37 "output_surface_proxy.h", |
| 38 ] |
| 39 |
| 40 public_deps = [ |
| 41 "//base", |
| 42 "//cc", |
| 43 ] |
| 44 } |
| 45 |
33 source_set("unit_tests") { | 46 source_set("unit_tests") { |
34 visibility = [ "//blimp/client/core:unit_tests" ] | 47 visibility = [ "//blimp/client/core:unit_tests" ] |
35 | 48 |
36 testonly = true | 49 testonly = true |
37 | 50 |
38 sources = [ | 51 sources = [ |
39 "blimp_client_picture_cache_unittest.cc", | 52 "blimp_client_picture_cache_unittest.cc", |
40 ] | 53 ] |
41 | 54 |
42 deps = [ | 55 deps = [ |
43 ":compositor", | 56 ":compositor", |
44 "//blimp/test:support", | 57 "//blimp/test:support", |
45 "//skia", | 58 "//skia", |
46 "//testing/gtest", | 59 "//testing/gtest", |
47 ] | 60 ] |
48 } | 61 } |
OLD | NEW |