Chromium Code Reviews| 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 | |
| 15 "//media/mojo/services:*", | 14 "//media/mojo/services:*", |
| 16 | 15 |
| 17 "//media/test/*", | 16 "//media/test/*", |
| 18 | 17 |
| 19 "//content/gpu:*", | 18 "//content/gpu:*", |
| 20 | 19 |
| 21 # TODO(liberato): can we avoid this? | 20 # TODO(liberato): can we avoid this? |
| 22 "//content/test/*", | 21 "//content/test/*", |
| 23 ] | 22 ] |
| 24 | 23 |
| 25 sources = [ | 24 sources = [ |
| 26 "mojo_audio_decoder.cc", | 25 "mojo_audio_decoder.cc", |
| 27 "mojo_audio_decoder.h", | 26 "mojo_audio_decoder.h", |
| 28 "mojo_cdm.cc", | 27 "mojo_cdm.cc", |
| 29 "mojo_cdm.h", | 28 "mojo_cdm.h", |
| 30 "mojo_cdm_factory.cc", | 29 "mojo_cdm_factory.cc", |
| 31 "mojo_cdm_factory.h", | 30 "mojo_cdm_factory.h", |
| 32 "mojo_decoder_factory.cc", | 31 "mojo_decoder_factory.cc", |
| 33 "mojo_decoder_factory.h", | 32 "mojo_decoder_factory.h", |
| 34 "mojo_decryptor.cc", | 33 "mojo_decryptor.cc", |
| 35 "mojo_decryptor.h", | 34 "mojo_decryptor.h", |
| 36 "mojo_demuxer_stream_impl.cc", | 35 "mojo_demuxer_stream_impl.cc", |
| 37 "mojo_demuxer_stream_impl.h", | 36 "mojo_demuxer_stream_impl.h", |
| 37 "mojo_media_log.cc", | |
| 38 "mojo_media_log.h", | |
|
xhwang
2017/06/30 16:24:57
This is actually used on the "service" side...
sandersd (OOO until July 31)
2017/06/30 17:44:30
This is a client in the same sense as MojoVideoDec
xhwang
2017/06/30 19:54:24
I see your point and I admit it's a bit confusing.
sandersd (OOO until July 31)
2017/07/06 21:25:24
I'm having trouble turning this into a plan forwar
sandersd (OOO until July 31)
2017/07/07 21:48:47
Done.
| |
| 38 "mojo_renderer.cc", | 39 "mojo_renderer.cc", |
| 39 "mojo_renderer.h", | 40 "mojo_renderer.h", |
| 40 "mojo_renderer_factory.cc", | 41 "mojo_renderer_factory.cc", |
| 41 "mojo_renderer_factory.h", | 42 "mojo_renderer_factory.h", |
| 42 "mojo_video_decoder.cc", | 43 "mojo_video_decoder.cc", |
| 43 "mojo_video_decoder.h", | 44 "mojo_video_decoder.h", |
| 44 ] | 45 ] |
| 45 | 46 |
| 46 if (is_android) { | 47 if (is_android) { |
| 47 sources += [ | 48 sources += [ |
| (...skipping 19 matching lines...) Expand all Loading... | |
| 67 "//services/service_manager/public/cpp", | 68 "//services/service_manager/public/cpp", |
| 68 ] | 69 ] |
| 69 | 70 |
| 70 if (is_android) { | 71 if (is_android) { |
| 71 deps += [ | 72 deps += [ |
| 72 "//gpu/ipc/common:common", | 73 "//gpu/ipc/common:common", |
| 73 "//ui/gl:gl", | 74 "//ui/gl:gl", |
| 74 ] | 75 ] |
| 75 } | 76 } |
| 76 } | 77 } |
| OLD | NEW |