| 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 |
| 11 # TODO(xhwang): Only allow //media/mojo:media_mojo_unittests | 11 # TODO(xhwang): Only allow //media/mojo:media_mojo_unittests |
| 12 "//media/mojo:*", | 12 "//media/mojo:*", |
| 13 | 13 |
| 14 # TODO(xhwang): Only allow //media/mojo/services:media_service_unittests | 14 # TODO(xhwang): Only allow //media/mojo/services:media_service_unittests |
| 15 "//media/mojo/services:*", | 15 "//media/mojo/services:*", |
| 16 | 16 |
| 17 "//media/test/*", | 17 "//media/test/*", |
| 18 ] | 18 ] |
| 19 | 19 |
| 20 sources = [ | 20 sources = [ |
| 21 "mojo_audio_decoder.cc", | 21 "mojo_audio_decoder.cc", |
| 22 "mojo_audio_decoder.h", | 22 "mojo_audio_decoder.h", |
| 23 "mojo_audio_renderer_sink_impl.cc", |
| 24 "mojo_audio_renderer_sink_impl.h", |
| 23 "mojo_cdm.cc", | 25 "mojo_cdm.cc", |
| 24 "mojo_cdm.h", | 26 "mojo_cdm.h", |
| 25 "mojo_cdm_factory.cc", | 27 "mojo_cdm_factory.cc", |
| 26 "mojo_cdm_factory.h", | 28 "mojo_cdm_factory.h", |
| 27 "mojo_decoder_factory.cc", | 29 "mojo_decoder_factory.cc", |
| 28 "mojo_decoder_factory.h", | 30 "mojo_decoder_factory.h", |
| 29 "mojo_decryptor.cc", | 31 "mojo_decryptor.cc", |
| 30 "mojo_decryptor.h", | 32 "mojo_decryptor.h", |
| 31 "mojo_demuxer_stream_impl.cc", | 33 "mojo_demuxer_stream_impl.cc", |
| 32 "mojo_demuxer_stream_impl.h", | 34 "mojo_demuxer_stream_impl.h", |
| (...skipping 17 matching lines...) Expand all Loading... |
| 50 "//mojo/public/cpp/system", | 52 "//mojo/public/cpp/system", |
| 51 "//services/service_manager/public/interfaces", | 53 "//services/service_manager/public/interfaces", |
| 52 ] | 54 ] |
| 53 | 55 |
| 54 deps = [ | 56 deps = [ |
| 55 "//media/mojo/common", | 57 "//media/mojo/common", |
| 56 "//mojo/common", | 58 "//mojo/common", |
| 57 "//services/service_manager/public/cpp", | 59 "//services/service_manager/public/cpp", |
| 58 ] | 60 ] |
| 59 } | 61 } |
| OLD | NEW |