| 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 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 141 "media_mojo_unittest.cc", | 141 "media_mojo_unittest.cc", |
| 142 ] | 142 ] |
| 143 | 143 |
| 144 deps = [ | 144 deps = [ |
| 145 "//media", | 145 "//media", |
| 146 "//media/base:test_support", | 146 "//media/base:test_support", |
| 147 "//media/mojo/clients", | 147 "//media/mojo/clients", |
| 148 "//media/mojo/common", | 148 "//media/mojo/common", |
| 149 "//media/mojo/interfaces", | 149 "//media/mojo/interfaces", |
| 150 "//services/service_manager/public/cpp:service_test_support", | 150 "//services/service_manager/public/cpp:service_test_support", |
| 151 "//services/service_manager/public/cpp/test:run_all_shelltests", | 151 "//services/service_manager/public/cpp/test:run_all_service_tests", |
| 152 "//testing/gmock", | 152 "//testing/gmock", |
| 153 "//testing/gtest", | 153 "//testing/gtest", |
| 154 ] | 154 ] |
| 155 | 155 |
| 156 data_deps = [ | 156 data_deps = [ |
| 157 "//media/mojo/services:test_manifest", | 157 "//media/mojo/services:test_manifest", |
| 158 "//media/mojo/services:media", | 158 "//media/mojo/services:media", |
| 159 ] | 159 ] |
| 160 } | 160 } |
| 161 | 161 |
| 162 service_manifest("media_manifest") { | 162 service_manifest("media_manifest") { |
| 163 name = "media" | 163 name = "media" |
| 164 source = "media_manifest.json" | 164 source = "media_manifest.json" |
| 165 } | 165 } |
| 166 | 166 |
| 167 service_manifest("test_manifest") { | 167 service_manifest("test_manifest") { |
| 168 name = "media_mojo_shell_unittests" | 168 name = "media_mojo_shell_unittests" |
| 169 type = "exe" | 169 type = "exe" |
| 170 source = "test_manifest.json" | 170 source = "test_manifest.json" |
| 171 } | 171 } |
| 172 | 172 |
| 173 test("media_pipeline_integration_unittests") { | 173 test("media_pipeline_integration_unittests") { |
| 174 testonly = true | 174 testonly = true |
| 175 | 175 |
| 176 deps = [ | 176 deps = [ |
| 177 "//media/test:mojo_pipeline_integration_tests", | 177 "//media/test:mojo_pipeline_integration_tests", |
| 178 "//services/service_manager/public/cpp/test:run_all_shelltests", | 178 "//services/service_manager/public/cpp/test:run_all_service_tests", |
| 179 ] | 179 ] |
| 180 | 180 |
| 181 data_deps = [ | 181 data_deps = [ |
| 182 ":media", | 182 ":media", |
| 183 ":pipeline_test_manifest", | 183 ":pipeline_test_manifest", |
| 184 ] | 184 ] |
| 185 } | 185 } |
| 186 | 186 |
| 187 service_manifest("pipeline_test_manifest") { | 187 service_manifest("pipeline_test_manifest") { |
| 188 name = "media_pipeline_integration_unittests" | 188 name = "media_pipeline_integration_unittests" |
| 189 type = "exe" | 189 type = "exe" |
| 190 source = "pipeline_test_manifest.json" | 190 source = "pipeline_test_manifest.json" |
| 191 } | 191 } |
| OLD | NEW |