| 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", |
| 12 "blimp_compositor.h", |
| 11 "blimp_compositor_dependencies.cc", | 13 "blimp_compositor_dependencies.cc", |
| 12 "blimp_compositor_dependencies.h", | 14 "blimp_compositor_dependencies.h", |
| 15 "blimp_compositor_manager.cc", |
| 16 "blimp_compositor_manager.h", |
| 13 "blimp_image_decoder.cc", | 17 "blimp_image_decoder.cc", |
| 14 "blimp_image_decoder.h", | 18 "blimp_image_decoder.h", |
| 15 "blimp_output_surface.h", | 19 "blimp_output_surface.h", |
| 16 "blob_image_serialization_processor.cc", | 20 "blob_image_serialization_processor.cc", |
| 17 "blob_image_serialization_processor.h", | 21 "blob_image_serialization_processor.h", |
| 18 "decoding_image_generator.cc", | 22 "decoding_image_generator.cc", |
| 19 "decoding_image_generator.h", | 23 "decoding_image_generator.h", |
| 20 "delegated_output_surface.cc", | 24 "delegated_output_surface.cc", |
| 21 "delegated_output_surface.h", | 25 "delegated_output_surface.h", |
| 22 ] | 26 ] |
| 23 | 27 |
| 24 deps = [ | 28 deps = [ |
| 25 "//blimp/client/public:public_headers", | 29 "//blimp/client/public:public_headers", |
| 26 "//blimp/net", | 30 "//blimp/net", |
| 31 "//cc/proto", |
| 32 "//cc/surfaces", |
| 27 "//gpu/command_buffer/client", | 33 "//gpu/command_buffer/client", |
| 28 "//third_party/libwebp", | 34 "//third_party/libwebp", |
| 35 "//ui/gl:gl", |
| 29 ] | 36 ] |
| 30 | 37 |
| 31 public_deps = [ | 38 public_deps = [ |
| 32 "//base", | 39 "//base", |
| 40 "//blimp/client/core/input", |
| 41 "//blimp/client/core/render_widget", |
| 33 "//blimp/common", | 42 "//blimp/common", |
| 34 "//blimp/common/proto", | 43 "//blimp/common/proto", |
| 35 "//cc", | 44 "//cc", |
| 36 "//skia", | 45 "//skia", |
| 37 ] | 46 ] |
| 38 } | 47 } |
| 39 | 48 |
| 40 source_set("unit_tests") { | 49 source_set("unit_tests") { |
| 41 visibility = [ "//blimp/client/core:unit_tests" ] | 50 visibility = [ "//blimp/client/core:unit_tests" ] |
| 42 | 51 |
| 43 testonly = true | 52 testonly = true |
| 44 | 53 |
| 45 sources = [ | 54 sources = [ |
| 46 "blimp_client_picture_cache_unittest.cc", | 55 "blimp_client_picture_cache_unittest.cc", |
| 56 "blimp_compositor_manager_unittest.cc", |
| 57 "blimp_compositor_unittest.cc", |
| 47 "delegated_output_surface_unittest.cc", | 58 "delegated_output_surface_unittest.cc", |
| 48 ] | 59 ] |
| 49 | 60 |
| 50 deps = [ | 61 deps = [ |
| 51 ":compositor", | 62 ":compositor", |
| 63 "//base", |
| 64 "//blimp/client/core/render_widget", |
| 65 "//blimp/client/core/render_widget:test_support", |
| 66 "//blimp/client/support", |
| 67 "//blimp/client/support:test_support", |
| 52 "//blimp/test:support", | 68 "//blimp/test:support", |
| 69 "//cc", |
| 53 "//cc:test_support", | 70 "//cc:test_support", |
| 71 "//cc/proto", |
| 72 "//cc/surfaces", |
| 54 "//skia", | 73 "//skia", |
| 55 "//testing/gtest", | 74 "//testing/gtest", |
| 75 "//ui/events:gesture_detection", |
| 56 ] | 76 ] |
| 57 } | 77 } |
| OLD | NEW |