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

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

Issue 2382103002: media: Add GpuMojoMediaClient. (Closed)
Patch Set: Add GpuMojoMediaClient. Created 4 years 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 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
45 } 45 }
46 } 46 }
47 } 47 }
48 48
49 component("services") { 49 component("services") {
50 output_name = "media_mojo_services" 50 output_name = "media_mojo_services"
51 51
52 sources = [ 52 sources = [
53 "demuxer_stream_provider_shim.cc", 53 "demuxer_stream_provider_shim.cc",
54 "demuxer_stream_provider_shim.h", 54 "demuxer_stream_provider_shim.h",
55 "gpu_mojo_media_client.cc",
56 "gpu_mojo_media_client.h",
sandersd (OOO until July 31) 2016/11/22 23:12:16 Main deps concern is here, since the GpuMojoMediaC
xhwang 2016/11/23 06:58:03 Thanks for bringing this up. Either way it looks g
sandersd (OOO until July 31) 2016/11/23 21:21:02 In that case I'll just keep going, and we can worr
55 "interface_factory_impl.cc", 57 "interface_factory_impl.cc",
56 "interface_factory_impl.h", 58 "interface_factory_impl.h",
57 "media_mojo_export.h", 59 "media_mojo_export.h",
58 "media_service.cc", 60 "media_service.cc",
59 "media_service.h", 61 "media_service.h",
60 "media_service_factory.cc", 62 "media_service_factory.cc",
61 "media_service_factory.h", 63 "media_service_factory.h",
62 "mojo_audio_decoder_service.cc", 64 "mojo_audio_decoder_service.cc",
63 "mojo_audio_decoder_service.h", 65 "mojo_audio_decoder_service.h",
64 "mojo_cdm_allocator.cc", 66 "mojo_cdm_allocator.cc",
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after
182 data_deps = [ 184 data_deps = [
183 ":media", 185 ":media",
184 ":pipeline_test_manifest", 186 ":pipeline_test_manifest",
185 ] 187 ]
186 } 188 }
187 189
188 service_manifest("pipeline_test_manifest") { 190 service_manifest("pipeline_test_manifest") {
189 name = "media_pipeline_integration_unittests" 191 name = "media_pipeline_integration_unittests"
190 source = "pipeline_test_manifest.json" 192 source = "pipeline_test_manifest.json"
191 } 193 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698