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

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

Issue 2640003002: Implement MojoAudioRendererSink and use it in UtilityMojoMediaClient (Closed)
Patch Set: Make sure to stop the audio sink. Also unbind from the audio device thread Created 3 years, 11 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
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 import("//media/media_options.gni") 5 import("//media/media_options.gni")
6 import("//services/service_manager/public/cpp/service.gni") 6 import("//services/service_manager/public/cpp/service.gni")
7 import("//services/service_manager/public/service_manifest.gni") 7 import("//services/service_manager/public/service_manifest.gni")
8 import("//testing/test.gni") 8 import("//testing/test.gni")
9 9
10 config("mojo_media_config") { 10 config("mojo_media_config") {
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
65 "gpu_mojo_media_client.h", 65 "gpu_mojo_media_client.h",
66 "interface_factory_impl.cc", 66 "interface_factory_impl.cc",
67 "interface_factory_impl.h", 67 "interface_factory_impl.h",
68 "media_mojo_export.h", 68 "media_mojo_export.h",
69 "media_service.cc", 69 "media_service.cc",
70 "media_service.h", 70 "media_service.h",
71 "media_service_factory.cc", 71 "media_service_factory.cc",
72 "media_service_factory.h", 72 "media_service_factory.h",
73 "mojo_audio_decoder_service.cc", 73 "mojo_audio_decoder_service.cc",
74 "mojo_audio_decoder_service.h", 74 "mojo_audio_decoder_service.h",
75 "mojo_audio_renderer_sink_adapter.cc",
76 "mojo_audio_renderer_sink_adapter.h",
75 "mojo_cdm_allocator.cc", 77 "mojo_cdm_allocator.cc",
76 "mojo_cdm_allocator.h", 78 "mojo_cdm_allocator.h",
77 "mojo_cdm_promise.cc", 79 "mojo_cdm_promise.cc",
78 "mojo_cdm_promise.h", 80 "mojo_cdm_promise.h",
79 "mojo_cdm_service.cc", 81 "mojo_cdm_service.cc",
80 "mojo_cdm_service.h", 82 "mojo_cdm_service.h",
81 "mojo_cdm_service_context.cc", 83 "mojo_cdm_service_context.cc",
82 "mojo_cdm_service_context.h", 84 "mojo_cdm_service_context.h",
83 "mojo_decryptor_service.cc", 85 "mojo_decryptor_service.cc",
84 "mojo_decryptor_service.h", 86 "mojo_decryptor_service.h",
(...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after
212 data_deps = [ 214 data_deps = [
213 ":media", 215 ":media",
214 ":pipeline_test_manifest", 216 ":pipeline_test_manifest",
215 ] 217 ]
216 } 218 }
217 219
218 service_manifest("pipeline_test_manifest") { 220 service_manifest("pipeline_test_manifest") {
219 name = "media_pipeline_integration_unittests" 221 name = "media_pipeline_integration_unittests"
220 source = "pipeline_test_manifest.json" 222 source = "pipeline_test_manifest.json"
221 } 223 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698