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 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
124 "//media:shared_memory_support", | 124 "//media:shared_memory_support", |
125 "//media/mojo/common", | 125 "//media/mojo/common", |
126 "//mojo/common", | 126 "//mojo/common", |
127 "//services/service_manager/public/interfaces", | 127 "//services/service_manager/public/interfaces", |
128 ] | 128 ] |
129 | 129 |
130 if (is_android) { | 130 if (is_android) { |
131 sources += [ | 131 sources += [ |
132 "android_mojo_media_client.cc", | 132 "android_mojo_media_client.cc", |
133 "android_mojo_media_client.h", | 133 "android_mojo_media_client.h", |
| 134 "mojo_media_drm_storage.cc", |
| 135 "mojo_media_drm_storage.h", |
134 ] | 136 ] |
135 } | 137 } |
136 } | 138 } |
137 | 139 |
138 service("media") { | 140 service("media") { |
139 testonly = true | 141 testonly = true |
140 | 142 |
141 # crbug.com/676418: Suppress symbol import warnings. | 143 # crbug.com/676418: Suppress symbol import warnings. |
142 if (is_win && is_component_build) { | 144 if (is_win && is_component_build) { |
143 ldflags = [ "/ignore:4217" ] | 145 ldflags = [ "/ignore:4217" ] |
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
221 | 223 |
222 catalog("media_service_unittests_catalog") { | 224 catalog("media_service_unittests_catalog") { |
223 embedded_services = [ ":test_manifest" ] | 225 embedded_services = [ ":test_manifest" ] |
224 standalone_services = [ ":media_manifest" ] | 226 standalone_services = [ ":media_manifest" ] |
225 } | 227 } |
226 | 228 |
227 catalog("media_pipeline_integration_unittests_catalog") { | 229 catalog("media_pipeline_integration_unittests_catalog") { |
228 embedded_services = [ ":pipeline_test_manifest" ] | 230 embedded_services = [ ":pipeline_test_manifest" ] |
229 standalone_services = [ ":media_manifest" ] | 231 standalone_services = [ ":media_manifest" ] |
230 } | 232 } |
OLD | NEW |