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", |
11 "blimp_image_decoder.cc", | 11 "blimp_image_decoder.cc", |
12 "blimp_image_decoder.h", | 12 "blimp_image_decoder.h", |
| 13 "blimp_output_surface.h", |
13 "blob_image_serialization_processor.cc", | 14 "blob_image_serialization_processor.cc", |
14 "blob_image_serialization_processor.h", | 15 "blob_image_serialization_processor.h", |
15 "decoding_image_generator.cc", | 16 "decoding_image_generator.cc", |
16 "decoding_image_generator.h", | 17 "decoding_image_generator.h", |
| 18 "delegated_output_surface.cc", |
| 19 "delegated_output_surface.h", |
17 ] | 20 ] |
18 | 21 |
19 deps = [ | 22 deps = [ |
20 "//blimp/net", | 23 "//blimp/net", |
21 "//third_party/libwebp", | 24 "//third_party/libwebp", |
22 ] | 25 ] |
23 | 26 |
24 public_deps = [ | 27 public_deps = [ |
25 "//base", | 28 "//base", |
26 "//blimp/common", | 29 "//blimp/common", |
27 "//blimp/common/proto", | 30 "//blimp/common/proto", |
28 "//cc", | 31 "//cc", |
29 "//skia", | 32 "//skia", |
30 ] | 33 ] |
31 } | 34 } |
32 | 35 |
33 source_set("unit_tests") { | 36 source_set("unit_tests") { |
34 visibility = [ "//blimp/client/core:unit_tests" ] | 37 visibility = [ "//blimp/client/core:unit_tests" ] |
35 | 38 |
36 testonly = true | 39 testonly = true |
37 | 40 |
38 sources = [ | 41 sources = [ |
39 "blimp_client_picture_cache_unittest.cc", | 42 "blimp_client_picture_cache_unittest.cc", |
| 43 "delegated_output_surface_unittest.cc", |
40 ] | 44 ] |
41 | 45 |
42 deps = [ | 46 deps = [ |
43 ":compositor", | 47 ":compositor", |
44 "//blimp/test:support", | 48 "//blimp/test:support", |
| 49 "//cc:test_support", |
45 "//skia", | 50 "//skia", |
46 "//testing/gtest", | 51 "//testing/gtest", |
47 ] | 52 ] |
48 } | 53 } |
OLD | NEW |