| 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 18 matching lines...) Expand all Loading... |
| 29 "mojo_decryptor.cc", | 29 "mojo_decryptor.cc", |
| 30 "mojo_decryptor.h", | 30 "mojo_decryptor.h", |
| 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 "mojo_video_renderer_sink_impl.cc", |
| 40 "mojo_video_renderer_sink_impl.h", |
| 39 ] | 41 ] |
| 40 | 42 |
| 41 public_configs = [ "//media/mojo/services:mojo_media_config" ] | 43 public_configs = [ "//media/mojo/services:mojo_media_config" ] |
| 42 | 44 |
| 43 public_deps = [ | 45 public_deps = [ |
| 44 "//base", | 46 "//base", |
| 45 "//media", | 47 "//media", |
| 46 "//media/mojo/interfaces", | 48 "//media/mojo/interfaces", |
| 47 "//mojo/public/cpp/bindings", | 49 "//mojo/public/cpp/bindings", |
| 48 "//mojo/public/cpp/system", | 50 "//mojo/public/cpp/system", |
| 49 "//services/service_manager/public/interfaces", | 51 "//services/service_manager/public/interfaces", |
| 50 ] | 52 ] |
| 51 | 53 |
| 52 deps = [ | 54 deps = [ |
| 53 "//media/mojo/common", | 55 "//media/mojo/common", |
| 54 "//mojo/common", | 56 "//mojo/common", |
| 55 "//services/service_manager/public/cpp", | 57 "//services/service_manager/public/cpp", |
| 56 ] | 58 ] |
| 57 } | 59 } |
| OLD | NEW |