| 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 20 matching lines...) Expand all Loading... |
| 31 "mojo_demuxer_stream_impl.cc", | 31 "mojo_demuxer_stream_impl.cc", |
| 32 "mojo_demuxer_stream_impl.h", | 32 "mojo_demuxer_stream_impl.h", |
| 33 "mojo_renderer.cc", | 33 "mojo_renderer.cc", |
| 34 "mojo_renderer.h", | 34 "mojo_renderer.h", |
| 35 "mojo_renderer_factory.cc", | 35 "mojo_renderer_factory.cc", |
| 36 "mojo_renderer_factory.h", | 36 "mojo_renderer_factory.h", |
| 37 "mojo_video_decoder.cc", | 37 "mojo_video_decoder.cc", |
| 38 "mojo_video_decoder.h", | 38 "mojo_video_decoder.h", |
| 39 ] | 39 ] |
| 40 | 40 |
| 41 if (is_android) { |
| 42 sources += [ |
| 43 "mojo_android_overlay.cc", |
| 44 "mojo_android_overlay.h", |
| 45 "mojo_android_overlay_factory.cc", |
| 46 "mojo_android_overlay_factory.h", |
| 47 ] |
| 48 } |
| 49 |
| 41 public_configs = [ "//media/mojo/services:mojo_media_config" ] | 50 public_configs = [ "//media/mojo/services:mojo_media_config" ] |
| 42 | 51 |
| 43 public_deps = [ | 52 public_deps = [ |
| 44 "//base", | 53 "//base", |
| 45 "//media", | 54 "//media", |
| 46 "//media/mojo/interfaces", | 55 "//media/mojo/interfaces", |
| 47 "//mojo/public/cpp/bindings", | 56 "//mojo/public/cpp/bindings", |
| 48 "//mojo/public/cpp/system", | 57 "//mojo/public/cpp/system", |
| 49 "//services/service_manager/public/interfaces", | 58 "//services/service_manager/public/interfaces", |
| 50 ] | 59 ] |
| 51 | 60 |
| 52 deps = [ | 61 deps = [ |
| 53 "//media/mojo/common", | 62 "//media/mojo/common", |
| 54 "//mojo/common", | 63 "//mojo/common", |
| 55 "//services/service_manager/public/cpp", | 64 "//services/service_manager/public/cpp", |
| 56 ] | 65 ] |
| 66 |
| 67 if (is_android) { |
| 68 deps += [ "//ui/gl:gl" ] |
| 69 } |
| 57 } | 70 } |
| OLD | NEW |