| 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("//testing/test.gni") | 5 import("//testing/test.gni") |
| 6 | 6 |
| 7 group("tests") { | |
| 8 testonly = true | |
| 9 deps = [ | |
| 10 ":media_mojo_unittests", | |
| 11 ] | |
| 12 } | |
| 13 | |
| 14 test("media_mojo_unittests") { | 7 test("media_mojo_unittests") { |
| 15 sources = [ | 8 sources = [ |
| 16 "common/media_type_converters_unittest.cc", | 9 "common/media_type_converters_unittest.cc", |
| 17 "common/mojo_shared_buffer_video_frame_unittest.cc", | 10 "common/mojo_shared_buffer_video_frame_unittest.cc", |
| 18 "services/mojo_cdm_allocator_unittest.cc", | 11 "services/mojo_cdm_allocator_unittest.cc", |
| 19 ] | 12 ] |
| 20 | 13 |
| 21 deps = [ | 14 deps = [ |
| 22 "//base", | 15 "//base", |
| 23 "//base/test:test_support", | 16 "//base/test:test_support", |
| 24 "//media", | 17 "//media", |
| 25 "//media:cdm_api", | 18 "//media:cdm_api", |
| 26 "//media/base:test_support", | 19 "//media/base:test_support", |
| 27 "//media/mojo/common", | 20 "//media/mojo/common", |
| 28 "//media/mojo/interfaces", | 21 "//media/mojo/interfaces", |
| 29 "//media/mojo/services", | 22 "//media/mojo/services", |
| 30 "//mojo/edk/test:run_all_unittests", | 23 "//mojo/edk/test:run_all_unittests", |
| 31 "//testing/gmock", | 24 "//testing/gmock", |
| 32 "//testing/gtest", | 25 "//testing/gtest", |
| 33 "//ui/gfx:test_support", | 26 "//ui/gfx:test_support", |
| 34 ] | 27 ] |
| 35 } | 28 } |
| OLD | NEW |