OLD | NEW |
(Empty) | |
| 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 |
| 3 # found in the LICENSE file. |
| 4 |
| 5 source_set("compositor") { |
| 6 visibility = [ "//blimp/client/*" ] |
| 7 |
| 8 sources = [ |
| 9 "blimp_client_picture_cache.cc", |
| 10 "blimp_client_picture_cache.h", |
| 11 "blimp_image_decoder.cc", |
| 12 "blimp_image_decoder.h", |
| 13 "blob_image_serialization_processor.cc", |
| 14 "blob_image_serialization_processor.h", |
| 15 "decoding_image_generator.cc", |
| 16 "decoding_image_generator.h", |
| 17 ] |
| 18 |
| 19 deps = [ |
| 20 "//blimp/net", |
| 21 "//third_party/libwebp", |
| 22 ] |
| 23 |
| 24 public_deps = [ |
| 25 "//base", |
| 26 "//blimp/common", |
| 27 "//blimp/common/proto", |
| 28 "//cc", |
| 29 "//skia", |
| 30 ] |
| 31 } |
| 32 |
| 33 source_set("unit_tests") { |
| 34 visibility = [ "//blimp/client/core:unit_tests" ] |
| 35 |
| 36 testonly = true |
| 37 |
| 38 sources = [ |
| 39 "blimp_client_picture_cache_unittest.cc", |
| 40 ] |
| 41 |
| 42 deps = [ |
| 43 ":compositor", |
| 44 "//blimp/test:support", |
| 45 "//skia", |
| 46 "//testing/gtest", |
| 47 ] |
| 48 } |
OLD | NEW |