| 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 178 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 189 service_manifest("media_manifest") { | 189 service_manifest("media_manifest") { |
| 190 name = "media" | 190 name = "media" |
| 191 source = "media_manifest.json" | 191 source = "media_manifest.json" |
| 192 } | 192 } |
| 193 | 193 |
| 194 service_manifest("test_manifest") { | 194 service_manifest("test_manifest") { |
| 195 name = "media_service_unittests" | 195 name = "media_service_unittests" |
| 196 source = "test_manifest.json" | 196 source = "test_manifest.json" |
| 197 } | 197 } |
| 198 | 198 |
| 199 test("media_pipeline_integration_unittests") { | 199 service_test("media_pipeline_integration_unittests") { |
| 200 testonly = true | 200 testonly = true |
| 201 | 201 |
| 202 catalog = ":media_pipeline_integration_unittests_catalog" |
| 203 |
| 202 deps = [ | 204 deps = [ |
| 203 "//media/test:mojo_pipeline_integration_tests", | 205 "//media/test:mojo_pipeline_integration_tests", |
| 204 "//services/service_manager/public/cpp/test:run_all_service_tests", | |
| 205 ] | 206 ] |
| 206 | 207 |
| 207 data_deps = [ | 208 data_deps = [ |
| 208 ":media", | 209 ":media", |
| 209 ] | 210 ] |
| 210 } | 211 } |
| 211 | 212 |
| 212 service_manifest("pipeline_test_manifest") { | 213 service_manifest("pipeline_test_manifest") { |
| 213 name = "media_pipeline_integration_unittests" | 214 name = "media_pipeline_integration_unittests" |
| 214 source = "pipeline_test_manifest.json" | 215 source = "pipeline_test_manifest.json" |
| 215 } | 216 } |
| 216 | 217 |
| 217 catalog("media_service_unittests_catalog") { | 218 catalog("media_service_unittests_catalog") { |
| 218 embedded_services = [ ":test_manifest" ] | 219 embedded_services = [ ":test_manifest" ] |
| 219 standalone_services = [ ":media_manifest" ] | 220 standalone_services = [ ":media_manifest" ] |
| 220 } | 221 } |
| 222 |
| 223 catalog("media_pipeline_integration_unittests_catalog") { |
| 224 embedded_services = [ ":pipeline_test_manifest" ] |
| 225 standalone_services = [ ":media_manifest" ] |
| 226 } |
| OLD | NEW |