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") { | |
David Trainor- moved to gerrit
2016/08/24 23:09:33
Can we remove this and put these in the "composito
Khushal
2016/08/25 02:35:38
Done.
| |
34 sources = [ | |
35 "blimp_output_surface.h", | |
36 "delegated_output_surface.cc", | |
37 "delegated_output_surface.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", |
53 "delegated_output_surface_unittest.cc", | |
40 ] | 54 ] |
41 | 55 |
42 deps = [ | 56 deps = [ |
43 ":compositor", | 57 ":compositor", |
58 ":compositor_support", | |
44 "//blimp/test:support", | 59 "//blimp/test:support", |
60 "//cc:test_support", | |
45 "//skia", | 61 "//skia", |
46 "//testing/gtest", | 62 "//testing/gtest", |
47 ] | 63 ] |
48 } | 64 } |
OLD | NEW |