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 | 8 |
9 # Target naming conventions: | 9 # Target naming conventions: |
10 # - converters: C++/Mojo type converters. | 10 # - converters: C++/Mojo type converters. |
(...skipping 189 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
200 ] | 200 ] |
201 | 201 |
202 deps = [ | 202 deps = [ |
203 ":application", | 203 ":application", |
204 "//mojo/public/c/system:for_shared_library", | 204 "//mojo/public/c/system:for_shared_library", |
205 ] | 205 ] |
206 } | 206 } |
207 | 207 |
208 # Note, the following tests must be loaded via mojo_runner as an app, e.g. | 208 # Note, the following tests must be loaded via mojo_runner as an app, e.g. |
209 # | 209 # |
210 # out/Debug/mojo_runner mojo:media_apptests | 210 # mojo/tools/apptest_runner.py |
211 # out/Debug/mojo_runner mojo:media_pipeline_integration_apptests | 211 # --apptest-filter mojo:media_apptests out/Debug |
| 212 # |
| 213 # mojo/tools/apptest_runner.py |
| 214 # --apptest-filter mojo:media_pipeline_integration_apptests out/Debug |
212 # | 215 # |
213 mojo_native_application("media_apptests") { | 216 mojo_native_application("media_apptests") { |
214 testonly = true | 217 testonly = true |
215 | 218 |
216 sources = [ | 219 sources = [ |
217 "media_apptest.cc", | 220 "media_apptest.cc", |
218 ] | 221 ] |
219 | 222 |
220 deps = [ | 223 deps = [ |
221 ":proxy", | 224 ":proxy", |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
258 ":media_mojo_unittests", | 261 ":media_mojo_unittests", |
259 ] | 262 ] |
260 | 263 |
261 if (!is_component_build) { | 264 if (!is_component_build) { |
262 deps += [ | 265 deps += [ |
263 ":media_apptests", | 266 ":media_apptests", |
264 ":media_pipeline_integration_apptests", | 267 ":media_pipeline_integration_apptests", |
265 ] | 268 ] |
266 } | 269 } |
267 } | 270 } |
OLD | NEW |