| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 # Implementations of media C++ interfaces using corresponding mojo services. | 5 # Implementations of media C++ interfaces using corresponding mojo services. |
| 6 source_set("clients") { | 6 source_set("clients") { |
| 7 visibility = [ | 7 visibility = [ |
| 8 "//chromecast/*", | 8 "//chromecast/*", |
| 9 "//content/renderer", | 9 "//content/renderer", |
| 10 | 10 |
| (...skipping 27 matching lines...) Expand all Loading... |
| 38 "mojo_renderer_factory.cc", | 38 "mojo_renderer_factory.cc", |
| 39 "mojo_renderer_factory.h", | 39 "mojo_renderer_factory.h", |
| 40 "mojo_video_decoder.cc", | 40 "mojo_video_decoder.cc", |
| 41 "mojo_video_decoder.h", | 41 "mojo_video_decoder.h", |
| 42 ] | 42 ] |
| 43 | 43 |
| 44 if (is_android) { | 44 if (is_android) { |
| 45 sources += [ | 45 sources += [ |
| 46 "mojo_android_overlay.cc", | 46 "mojo_android_overlay.cc", |
| 47 "mojo_android_overlay.h", | 47 "mojo_android_overlay.h", |
| 48 "mojo_android_overlay_factory.cc", | |
| 49 "mojo_android_overlay_factory.h", | |
| 50 ] | 48 ] |
| 51 } | 49 } |
| 52 | 50 |
| 53 public_configs = [ "//media/mojo/services:mojo_media_config" ] | 51 public_configs = [ "//media/mojo/services:mojo_media_config" ] |
| 54 | 52 |
| 55 public_deps = [ | 53 public_deps = [ |
| 56 "//base", | 54 "//base", |
| 57 "//media", | 55 "//media", |
| 58 "//media/mojo/interfaces", | 56 "//media/mojo/interfaces", |
| 59 "//mojo/public/cpp/bindings", | 57 "//mojo/public/cpp/bindings", |
| 60 "//mojo/public/cpp/system", | 58 "//mojo/public/cpp/system", |
| 61 "//services/service_manager/public/interfaces", | 59 "//services/service_manager/public/interfaces", |
| 62 ] | 60 ] |
| 63 | 61 |
| 64 deps = [ | 62 deps = [ |
| 65 "//media/mojo/common", | 63 "//media/mojo/common", |
| 66 "//mojo/common", | 64 "//mojo/common", |
| 67 "//services/service_manager/public/cpp", | 65 "//services/service_manager/public/cpp", |
| 68 ] | 66 ] |
| 69 | 67 |
| 70 if (is_android) { | 68 if (is_android) { |
| 71 deps += [ "//ui/gl:gl" ] | 69 deps += [ "//ui/gl:gl" ] |
| 72 } | 70 } |
| 73 } | 71 } |
| OLD | NEW |