| 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.cc", | 11 "blimp_compositor.cc", |
| 12 "blimp_compositor.h", | 12 "blimp_compositor.h", |
| 13 "blimp_compositor_dependencies.cc", | 13 "blimp_compositor_dependencies.cc", |
| 14 "blimp_compositor_dependencies.h", | 14 "blimp_compositor_dependencies.h", |
| 15 "blimp_compositor_manager.cc", | 15 "blimp_compositor_manager.cc", |
| 16 "blimp_compositor_manager.h", | 16 "blimp_compositor_manager.h", |
| 17 "blimp_image_decoder.cc", | 17 "blimp_image_decoder.cc", |
| 18 "blimp_image_decoder.h", | 18 "blimp_image_decoder.h", |
| 19 "blimp_output_surface.h", | 19 "blimp_output_surface.h", |
| 20 "blob_image_serialization_processor.cc", | 20 "blob_image_serialization_processor.cc", |
| 21 "blob_image_serialization_processor.h", | 21 "blob_image_serialization_processor.h", |
| 22 "decoding_image_generator.cc", | 22 "decoding_image_generator.cc", |
| 23 "decoding_image_generator.h", | 23 "decoding_image_generator.h", |
| 24 "delegated_output_surface.cc", | 24 "delegated_output_surface.cc", |
| 25 "delegated_output_surface.h", | 25 "delegated_output_surface.h", |
| 26 ] | 26 ] |
| 27 | 27 |
| 28 deps = [ | 28 deps = [ |
| 29 "//blimp/client/public:public_headers", | 29 "//blimp/client/public:public_headers", |
| 30 "//blimp/client/support/compositor", |
| 30 "//blimp/net", | 31 "//blimp/net", |
| 31 "//cc/proto", | 32 "//cc/proto", |
| 32 "//cc/surfaces", | 33 "//cc/surfaces", |
| 33 "//gpu/command_buffer/client", | 34 "//gpu/command_buffer/client", |
| 34 "//third_party/libwebp", | 35 "//third_party/libwebp", |
| 35 "//ui/gl:gl", | 36 "//ui/gl:gl", |
| 36 ] | 37 ] |
| 37 | 38 |
| 38 public_deps = [ | 39 public_deps = [ |
| 39 "//base", | 40 "//base", |
| (...skipping 28 matching lines...) Expand all Loading... |
| 68 "//blimp/test:support", | 69 "//blimp/test:support", |
| 69 "//cc", | 70 "//cc", |
| 70 "//cc:test_support", | 71 "//cc:test_support", |
| 71 "//cc/proto", | 72 "//cc/proto", |
| 72 "//cc/surfaces", | 73 "//cc/surfaces", |
| 73 "//skia", | 74 "//skia", |
| 74 "//testing/gtest", | 75 "//testing/gtest", |
| 75 "//ui/events:gesture_detection", | 76 "//ui/events:gesture_detection", |
| 76 ] | 77 ] |
| 77 } | 78 } |
| OLD | NEW |