| 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_compositor_dependencies.cc", |
| 12 "blimp_compositor_dependencies.h", |
| 11 "blimp_image_decoder.cc", | 13 "blimp_image_decoder.cc", |
| 12 "blimp_image_decoder.h", | 14 "blimp_image_decoder.h", |
| 15 "blimp_task_graph_runner.cc", |
| 16 "blimp_task_graph_runner.h", |
| 13 "blob_image_serialization_processor.cc", | 17 "blob_image_serialization_processor.cc", |
| 14 "blob_image_serialization_processor.h", | 18 "blob_image_serialization_processor.h", |
| 15 "decoding_image_generator.cc", | 19 "decoding_image_generator.cc", |
| 16 "decoding_image_generator.h", | 20 "decoding_image_generator.h", |
| 17 ] | 21 ] |
| 18 | 22 |
| 19 deps = [ | 23 deps = [ |
| 20 "//blimp/net", | 24 "//blimp/net", |
| 21 "//third_party/libwebp", | 25 "//third_party/libwebp", |
| 22 ] | 26 ] |
| (...skipping 29 matching lines...) Expand all Loading... |
| 52 "blimp_client_picture_cache_unittest.cc", | 56 "blimp_client_picture_cache_unittest.cc", |
| 53 ] | 57 ] |
| 54 | 58 |
| 55 deps = [ | 59 deps = [ |
| 56 ":compositor", | 60 ":compositor", |
| 57 "//blimp/test:support", | 61 "//blimp/test:support", |
| 58 "//skia", | 62 "//skia", |
| 59 "//testing/gtest", | 63 "//testing/gtest", |
| 60 ] | 64 ] |
| 61 } | 65 } |
| OLD | NEW |