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/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 Loading... |
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", |
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 Loading... |
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 } |
OLD | NEW |