| 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", |
| 13 "blimp_output_surface.h", | 15 "blimp_output_surface.h", |
| 14 "blob_image_serialization_processor.cc", | 16 "blob_image_serialization_processor.cc", |
| 15 "blob_image_serialization_processor.h", | 17 "blob_image_serialization_processor.h", |
| 16 "decoding_image_generator.cc", | 18 "decoding_image_generator.cc", |
| 17 "decoding_image_generator.h", | 19 "decoding_image_generator.h", |
| 18 "delegated_output_surface.cc", | 20 "delegated_output_surface.cc", |
| 19 "delegated_output_surface.h", | 21 "delegated_output_surface.h", |
| 20 ] | 22 ] |
| 21 | 23 |
| 22 deps = [ | 24 deps = [ |
| 25 "//blimp/client/public:public_headers", |
| 23 "//blimp/net", | 26 "//blimp/net", |
| 27 "//gpu/command_buffer/client", |
| 24 "//third_party/libwebp", | 28 "//third_party/libwebp", |
| 25 ] | 29 ] |
| 26 | 30 |
| 27 public_deps = [ | 31 public_deps = [ |
| 28 "//base", | 32 "//base", |
| 29 "//blimp/common", | 33 "//blimp/common", |
| 30 "//blimp/common/proto", | 34 "//blimp/common/proto", |
| 31 "//cc", | 35 "//cc", |
| 32 "//skia", | 36 "//skia", |
| 33 ] | 37 ] |
| (...skipping 10 matching lines...) Expand all Loading... |
| 44 ] | 48 ] |
| 45 | 49 |
| 46 deps = [ | 50 deps = [ |
| 47 ":compositor", | 51 ":compositor", |
| 48 "//blimp/test:support", | 52 "//blimp/test:support", |
| 49 "//cc:test_support", | 53 "//cc:test_support", |
| 50 "//skia", | 54 "//skia", |
| 51 "//testing/gtest", | 55 "//testing/gtest", |
| 52 ] | 56 ] |
| 53 } | 57 } |
| OLD | NEW |