| 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", |
| 29 ] | 35 ] |
| 30 | 36 |
| 31 public_deps = [ | 37 public_deps = [ |
| 32 "//base", | 38 "//base", |
| 39 "//blimp/client/core/input", |
| 40 "//blimp/client/core/render_widget", |
| 33 "//blimp/common", | 41 "//blimp/common", |
| 34 "//blimp/common/proto", | 42 "//blimp/common/proto", |
| 35 "//cc", | 43 "//cc", |
| 36 "//skia", | 44 "//skia", |
| 37 ] | 45 ] |
| 38 } | 46 } |
| 39 | 47 |
| 40 source_set("unit_tests") { | 48 source_set("unit_tests") { |
| 41 visibility = [ "//blimp/client/core:unit_tests" ] | 49 visibility = [ "//blimp/client/core:unit_tests" ] |
| 42 | 50 |
| 43 testonly = true | 51 testonly = true |
| 44 | 52 |
| 45 sources = [ | 53 sources = [ |
| 46 "blimp_client_picture_cache_unittest.cc", | 54 "blimp_client_picture_cache_unittest.cc", |
| 55 "blimp_compositor_manager_unittest.cc", |
| 56 "blimp_compositor_unittest.cc", |
| 47 "delegated_output_surface_unittest.cc", | 57 "delegated_output_surface_unittest.cc", |
| 48 ] | 58 ] |
| 49 | 59 |
| 50 deps = [ | 60 deps = [ |
| 51 ":compositor", | 61 ":compositor", |
| 62 "//base", |
| 63 "//blimp/client/core/render_widget", |
| 64 "//blimp/client/core/render_widget:test_support", |
| 65 "//blimp/client/support", |
| 66 "//blimp/client/support:test_support", |
| 52 "//blimp/test:support", | 67 "//blimp/test:support", |
| 68 "//cc", |
| 53 "//cc:test_support", | 69 "//cc:test_support", |
| 70 "//cc/proto", |
| 71 "//cc/surfaces", |
| 54 "//skia", | 72 "//skia", |
| 55 "//testing/gtest", | 73 "//testing/gtest", |
| 74 "//ui/events:gesture_detection", |
| 75 "//ui/gl:gl", |
| 56 ] | 76 ] |
| 57 } | 77 } |
| OLD | NEW |