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 30 matching lines...) Expand all Loading... |
95 "//base", | 97 "//base", |
96 "//media", | 98 "//media", |
97 "//media/mojo/interfaces", | 99 "//media/mojo/interfaces", |
98 "//mojo/public/cpp/bindings", | 100 "//mojo/public/cpp/bindings", |
99 "//mojo/public/cpp/system", | 101 "//mojo/public/cpp/system", |
100 "//services/service_manager/public/cpp", | 102 "//services/service_manager/public/cpp", |
101 "//url", | 103 "//url", |
102 ] | 104 ] |
103 | 105 |
104 deps = [ | 106 deps = [ |
| 107 "//gpu", |
| 108 "//media/gpu/ipc/service", |
105 "//media:cdm_api", | 109 "//media:cdm_api", |
106 "//media:shared_memory_support", | 110 "//media:shared_memory_support", |
107 "//media/mojo/common", | 111 "//media/mojo/common", |
108 "//mojo/common", | 112 "//mojo/common", |
109 "//services/service_manager/public/interfaces", | 113 "//services/service_manager/public/interfaces", |
110 ] | 114 ] |
111 | 115 |
112 if (is_android) { | 116 if (is_android) { |
113 sources += [ | 117 sources += [ |
114 "android_mojo_media_client.cc", | 118 "android_mojo_media_client.cc", |
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
182 data_deps = [ | 186 data_deps = [ |
183 ":media", | 187 ":media", |
184 ":pipeline_test_manifest", | 188 ":pipeline_test_manifest", |
185 ] | 189 ] |
186 } | 190 } |
187 | 191 |
188 service_manifest("pipeline_test_manifest") { | 192 service_manifest("pipeline_test_manifest") { |
189 name = "media_pipeline_integration_unittests" | 193 name = "media_pipeline_integration_unittests" |
190 source = "pipeline_test_manifest.json" | 194 source = "pipeline_test_manifest.json" |
191 } | 195 } |
OLD | NEW |