| 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 ] |
| (...skipping 23 matching lines...) Expand all Loading... |
| 44 ] | 46 ] |
| 45 | 47 |
| 46 deps = [ | 48 deps = [ |
| 47 ":compositor", | 49 ":compositor", |
| 48 "//blimp/test:support", | 50 "//blimp/test:support", |
| 49 "//cc:test_support", | 51 "//cc:test_support", |
| 50 "//skia", | 52 "//skia", |
| 51 "//testing/gtest", | 53 "//testing/gtest", |
| 52 ] | 54 ] |
| 53 } | 55 } |
| OLD | NEW |