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