| 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("//mojo/public/mojo_application.gni") | 5 import("//mojo/public/mojo_application.gni") |
| 6 | 6 |
| 7 # Things needed by multiple targets, like renderer_impl and renderer_app. | 7 # Things needed by multiple targets, like renderer_impl and renderer_app. |
| 8 # GYP version: media/media.gyp:media_mojo_lib | 8 # GYP version: media/media.gyp:media_mojo_lib |
| 9 source_set("lib") { | 9 source_set("lib") { |
| 10 deps = [ | 10 deps = [ |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 83 | 83 |
| 84 deps = [ | 84 deps = [ |
| 85 "//base", | 85 "//base", |
| 86 "//base/test:test_support", | 86 "//base/test:test_support", |
| 87 "//media", | 87 "//media", |
| 88 "//media/mojo/interfaces", | 88 "//media/mojo/interfaces", |
| 89 "//mojo/edk/system", | 89 "//mojo/edk/system", |
| 90 "//mojo/edk/test:run_all_unittests", | 90 "//mojo/edk/test:run_all_unittests", |
| 91 "//mojo/environment:chromium", | 91 "//mojo/environment:chromium", |
| 92 "//testing/gtest", | 92 "//testing/gtest", |
| 93 ":lib" | 93 ":lib", |
| 94 ] | 94 ] |
| 95 } | 95 } |
| 96 | 96 |
| 97 # Not a 'test' because this is loaded via mojo_shell as an app. | 97 # Not a 'test' because this is loaded via mojo_shell as an app. |
| 98 # To run the test: | 98 # To run the test: |
| 99 # out/Debug/mojo_shell mojo:mojo_media_renderer_apptest | 99 # out/Debug/mojo_shell mojo:mojo_media_renderer_apptest |
| 100 # You may need to get "mojo_shell" from a mojo checkout and symlink all required | 100 # You may need to get "mojo_shell" from a mojo checkout and symlink all required |
| 101 # libraries. | 101 # libraries. |
| 102 # TODO(msw): Fix GYP build for ApplicationTestBase so that we can add a GYP | 102 # TODO(msw): Fix GYP build for ApplicationTestBase so that we can add a GYP |
| 103 # version of this test. | 103 # version of this test. |
| (...skipping 29 matching lines...) Expand all Loading... |
| 133 ] | 133 ] |
| 134 } | 134 } |
| 135 | 135 |
| 136 group("tests") { | 136 group("tests") { |
| 137 testonly = true | 137 testonly = true |
| 138 deps = [ | 138 deps = [ |
| 139 ":mojo_media_lib_unittests", | 139 ":mojo_media_lib_unittests", |
| 140 ":media_renderer_apptest", | 140 ":media_renderer_apptest", |
| 141 ] | 141 ] |
| 142 } | 142 } |
| OLD | NEW |