Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | |
| 2 # Use of this source code is governed by a BSD-style license that can be | |
| 3 # found in the LICENSE file. | |
| 4 # | |
| 5 import("//testing/test.gni") | |
| 6 | |
| 7 source_set("router") { | |
| 8 deps = [ | |
| 9 "//base", | |
| 10 "//url", | |
| 11 ] | |
| 12 sources = [ | |
| 13 "media_route.cc", | |
| 14 "media_route.h", | |
| 15 "media_route_id.h", | |
| 16 "media_sink.cc", | |
| 17 "media_sink.h", | |
| 18 "media_source.cc", | |
| 19 "media_source.h", | |
| 20 "route_id_manager.cc", | |
|
sky
2015/03/11 19:53:56
I don't see media_source_helper.* listed here.
Kevin M
2015/03/11 20:47:41
Done.
| |
| 21 "route_id_manager.h", | |
| 22 ] | |
| 23 } | |
| 24 | |
| 25 source_set("unit_tests") { | |
| 26 testonly = true | |
| 27 deps = [ | |
| 28 ":router", | |
| 29 "//base/test:test_support", | |
| 30 "//testing/gmock", | |
| 31 "//testing/gtest", | |
| 32 ] | |
| 33 sources = [ | |
| 34 "media_route_unittest.cc", | |
| 35 "media_sink_unittest.cc", | |
| 36 "media_source_unittest.cc", | |
| 37 "route_id_manager_unittest.cc", | |
| 38 ] | |
| 39 } | |
| 40 | |
| 41 # Optional standalone test binary, for faster isolated builds. | |
| 42 test("unit_tests_main") { | |
| 43 deps = [ | |
| 44 ":unit_tests", | |
| 45 "//testing/gmock:gmock_main", | |
| 46 ] | |
| 47 sources = [ | |
| 48 ":unittest_files", | |
| 49 ] | |
| 50 } | |
| OLD | NEW |