Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(224)

Side by Side Diff: media/mojo/clients/BUILD.gn

Issue 2643743002: Mojify demuxers and allow running {Chunk/FFmpeg}Demuxer in a Utility Process (Closed)
Patch Set: Rebase and make sure to unbind mojom::DemuxerPtr on the bound thread during termination Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « media/filters/vpx_video_decoder.cc ('k') | media/mojo/clients/mojo_data_source_impl.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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", 23 "mojo_audio_renderer_sink_impl.cc",
24 "mojo_audio_renderer_sink_impl.h", 24 "mojo_audio_renderer_sink_impl.h",
25 "mojo_cdm.cc", 25 "mojo_cdm.cc",
26 "mojo_cdm.h", 26 "mojo_cdm.h",
27 "mojo_cdm_factory.cc", 27 "mojo_cdm_factory.cc",
28 "mojo_cdm_factory.h", 28 "mojo_cdm_factory.h",
29 "mojo_data_source_impl.cc",
30 "mojo_data_source_impl.h",
29 "mojo_decoder_factory.cc", 31 "mojo_decoder_factory.cc",
30 "mojo_decoder_factory.h", 32 "mojo_decoder_factory.h",
31 "mojo_decryptor.cc", 33 "mojo_decryptor.cc",
32 "mojo_decryptor.h", 34 "mojo_decryptor.h",
35 "mojo_demuxer.cc",
36 "mojo_demuxer.h",
37 "mojo_demuxer_factory.cc",
38 "mojo_demuxer_factory.h",
39 "mojo_demuxer_source_buffer.cc",
40 "mojo_demuxer_source_buffer.h",
33 "mojo_demuxer_stream_impl.cc", 41 "mojo_demuxer_stream_impl.cc",
34 "mojo_demuxer_stream_impl.h", 42 "mojo_demuxer_stream_impl.h",
35 "mojo_renderer.cc", 43 "mojo_renderer.cc",
36 "mojo_renderer.h", 44 "mojo_renderer.h",
37 "mojo_renderer_factory.cc", 45 "mojo_renderer_factory.cc",
38 "mojo_renderer_factory.h", 46 "mojo_renderer_factory.h",
39 "mojo_video_decoder.cc", 47 "mojo_video_decoder.cc",
40 "mojo_video_decoder.h", 48 "mojo_video_decoder.h",
41 "mojo_video_renderer_sink_impl.cc", 49 "mojo_video_renderer_sink_impl.cc",
42 "mojo_video_renderer_sink_impl.h", 50 "mojo_video_renderer_sink_impl.h",
43 ] 51 ]
44 52
45 public_configs = [ "//media/mojo/services:mojo_media_config" ] 53 public_configs = [ "//media/mojo/services:mojo_media_config" ]
46 54
47 public_deps = [ 55 public_deps = [
48 "//base", 56 "//base",
49 "//media", 57 "//media",
50 "//media/mojo/interfaces", 58 "//media/mojo/interfaces",
51 "//mojo/public/cpp/bindings", 59 "//mojo/public/cpp/bindings",
52 "//mojo/public/cpp/system", 60 "//mojo/public/cpp/system",
53 "//services/service_manager/public/interfaces", 61 "//services/service_manager/public/interfaces",
54 ] 62 ]
55 63
56 deps = [ 64 deps = [
57 "//media/mojo/common", 65 "//media/mojo/common",
58 "//mojo/common", 66 "//mojo/common",
59 "//services/service_manager/public/cpp", 67 "//services/service_manager/public/cpp",
60 ] 68 ]
61 } 69 }
OLDNEW
« no previous file with comments | « media/filters/vpx_video_decoder.cc ('k') | media/mojo/clients/mojo_data_source_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698