| 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 source_set("unit_tests") { | 7 source_set("unit_tests") { |
| 8 testonly = true | 8 testonly = true |
| 9 sources = [ | 9 sources = [ |
| 10 "clients/mojo_audio_decoder_unittest.cc", | 10 "clients/mojo_audio_decoder_unittest.cc", |
| 11 "clients/mojo_cdm_unittest.cc", |
| 11 "clients/mojo_renderer_unittest.cc", | 12 "clients/mojo_renderer_unittest.cc", |
| 12 "common/media_type_converters_unittest.cc", | 13 "common/media_type_converters_unittest.cc", |
| 13 "common/mojo_decoder_buffer_converter_unittest.cc", | 14 "common/mojo_decoder_buffer_converter_unittest.cc", |
| 14 "common/mojo_shared_buffer_video_frame_unittest.cc", | 15 "common/mojo_shared_buffer_video_frame_unittest.cc", |
| 15 "services/mojo_cdm_allocator_unittest.cc", | 16 "services/mojo_cdm_allocator_unittest.cc", |
| 16 "services/strong_binding_set_unittest.cc", | 17 "services/strong_binding_set_unittest.cc", |
| 17 ] | 18 ] |
| 18 | 19 |
| 19 deps = [ | 20 deps = [ |
| 20 "//base", | 21 "//base", |
| (...skipping 11 matching lines...) Expand all Loading... |
| 32 "//ui/gfx:test_support", | 33 "//ui/gfx:test_support", |
| 33 ] | 34 ] |
| 34 } | 35 } |
| 35 | 36 |
| 36 test("media_mojo_unittests") { | 37 test("media_mojo_unittests") { |
| 37 deps = [ | 38 deps = [ |
| 38 ":unit_tests", | 39 ":unit_tests", |
| 39 "//mojo/edk/test:run_all_unittests", | 40 "//mojo/edk/test:run_all_unittests", |
| 40 ] | 41 ] |
| 41 } | 42 } |
| OLD | NEW |