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("//testing/test.gni") | 6 import("//testing/test.gni") |
7 import("//mojo/public/mojo_application.gni") | 7 import("//mojo/public/mojo_application.gni") |
8 import("//mojo/public/mojo_application_manifest.gni") | 8 import("//mojo/public/mojo_application_manifest.gni") |
9 | 9 |
10 # Target naming conventions: | 10 # Target naming conventions: |
(...skipping 222 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
233 deps = [ | 233 deps = [ |
234 ":application", | 234 ":application", |
235 "//base", | 235 "//base", |
236 "//media", | 236 "//media", |
237 "//mojo/logging", | 237 "//mojo/logging", |
238 "//mojo/public/c/system:for_shared_library", | 238 "//mojo/public/c/system:for_shared_library", |
239 "//services/shell/public/cpp:sources", | 239 "//services/shell/public/cpp:sources", |
240 ] | 240 ] |
241 } | 241 } |
242 | 242 |
| 243 mojo_application_manifest("media_manifest") { |
| 244 application_name = "media" |
| 245 source = "media_manifest.json" |
| 246 } |
| 247 |
243 # Note, the following tests must be loaded via mojo_runner as an app, e.g. | 248 # Note, the following tests must be loaded via mojo_runner as an app, e.g. |
244 # | 249 # |
245 # mojo/tools/apptest_runner.py | 250 # mojo/tools/apptest_runner.py |
246 # --apptest-filter mojo:media_apptests out/Debug | 251 # --apptest-filter mojo:media_apptests out/Debug |
247 # | 252 # |
248 # mojo/tools/apptest_runner.py | 253 # mojo/tools/apptest_runner.py |
249 # --apptest-filter mojo:media_pipeline_integration_apptests out/Debug | 254 # --apptest-filter mojo:media_pipeline_integration_apptests out/Debug |
250 # | 255 # |
251 mojo_native_application("media_apptests") { | 256 mojo_native_application("media_apptests") { |
252 testonly = true | 257 testonly = true |
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
295 source = "pipeline_apptest_manifest.json" | 300 source = "pipeline_apptest_manifest.json" |
296 } | 301 } |
297 | 302 |
298 group("tests") { | 303 group("tests") { |
299 testonly = true | 304 testonly = true |
300 deps = [ | 305 deps = [ |
301 ":media_apptests", | 306 ":media_apptests", |
302 ":media_pipeline_integration_apptests", | 307 ":media_pipeline_integration_apptests", |
303 ] | 308 ] |
304 } | 309 } |
OLD | NEW |