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 import("//media/media_options.gni") | 5 import("//media/media_options.gni") |
6 import("//services/catalog/public/tools/catalog.gni") | 6 import("//services/catalog/public/tools/catalog.gni") |
7 import("//services/service_manager/public/cpp/service.gni") | 7 import("//services/service_manager/public/cpp/service.gni") |
8 import("//services/service_manager/public/service_manifest.gni") | 8 import("//services/service_manager/public/service_manifest.gni") |
9 import("//services/service_manager/public/tools/test/service_test.gni") | 9 import("//services/service_manager/public/tools/test/service_test.gni") |
10 import("//testing/test.gni") | 10 import("//testing/test.gni") |
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
54 public_deps = [ | 54 public_deps = [ |
55 ":lib", | 55 ":lib", |
56 ] | 56 ] |
57 } | 57 } |
58 | 58 |
59 # TODO(xhwang): Add this intermediate target because ServiceTest doesn't support | 59 # TODO(xhwang): Add this intermediate target because ServiceTest doesn't support |
60 # services that depend on shared libraries in component build. | 60 # services that depend on shared libraries in component build. |
61 # See http://crbug.com/670094 | 61 # See http://crbug.com/670094 |
62 source_set("lib") { | 62 source_set("lib") { |
63 sources = [ | 63 sources = [ |
64 "demuxer_stream_provider_shim.cc", | |
65 "demuxer_stream_provider_shim.h", | |
66 "gpu_mojo_media_client.cc", | 64 "gpu_mojo_media_client.cc", |
67 "gpu_mojo_media_client.h", | 65 "gpu_mojo_media_client.h", |
68 "interface_factory_impl.cc", | 66 "interface_factory_impl.cc", |
69 "interface_factory_impl.h", | 67 "interface_factory_impl.h", |
70 "media_mojo_export.h", | 68 "media_mojo_export.h", |
| 69 "media_resource_shim.cc", |
| 70 "media_resource_shim.h", |
71 "media_service.cc", | 71 "media_service.cc", |
72 "media_service.h", | 72 "media_service.h", |
73 "media_service_factory.cc", | 73 "media_service_factory.cc", |
74 "media_service_factory.h", | 74 "media_service_factory.h", |
75 "mojo_audio_decoder_service.cc", | 75 "mojo_audio_decoder_service.cc", |
76 "mojo_audio_decoder_service.h", | 76 "mojo_audio_decoder_service.h", |
77 "mojo_cdm_allocator.cc", | 77 "mojo_cdm_allocator.cc", |
78 "mojo_cdm_allocator.h", | 78 "mojo_cdm_allocator.h", |
79 "mojo_cdm_promise.cc", | 79 "mojo_cdm_promise.cc", |
80 "mojo_cdm_promise.h", | 80 "mojo_cdm_promise.h", |
(...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
217 | 217 |
218 catalog("media_service_unittests_catalog") { | 218 catalog("media_service_unittests_catalog") { |
219 embedded_services = [ ":test_manifest" ] | 219 embedded_services = [ ":test_manifest" ] |
220 standalone_services = [ ":media_manifest" ] | 220 standalone_services = [ ":media_manifest" ] |
221 } | 221 } |
222 | 222 |
223 catalog("media_pipeline_integration_unittests_catalog") { | 223 catalog("media_pipeline_integration_unittests_catalog") { |
224 embedded_services = [ ":pipeline_test_manifest" ] | 224 embedded_services = [ ":pipeline_test_manifest" ] |
225 standalone_services = [ ":media_manifest" ] | 225 standalone_services = [ ":media_manifest" ] |
226 } | 226 } |
OLD | NEW |