| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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 import("//third_party/protobuf/proto_library.gni") | 6 import("//third_party/protobuf/proto_library.gni") |
| 7 | 7 |
| 8 proto_library("media_remoting_proto") { | 8 proto_library("media_remoting_proto") { |
| 9 proto_out_dir = "media/remoting" | 9 proto_out_dir = "media/remoting" |
| 10 sources = [ | 10 sources = [ |
| (...skipping 25 matching lines...) Expand all Loading... |
| 36 "remoting_renderer_factory.cc", | 36 "remoting_renderer_factory.cc", |
| 37 "remoting_renderer_factory.h", | 37 "remoting_renderer_factory.h", |
| 38 ] | 38 ] |
| 39 deps = [ | 39 deps = [ |
| 40 "//base", | 40 "//base", |
| 41 "//media", | 41 "//media", |
| 42 "//media/mojo/interfaces:remoting", | 42 "//media/mojo/interfaces:remoting", |
| 43 ] | 43 ] |
| 44 } | 44 } |
| 45 | 45 |
| 46 test("media_remoting_unittests") { | 46 source_set("media_remoting_tests") { |
| 47 testonly = true |
| 47 sources = [ | 48 sources = [ |
| 48 "remoting_controller_unittest.cc", | 49 "remoting_controller_unittest.cc", |
| 49 "rpc/proto_utils_unittest.cc", | 50 "rpc/proto_utils_unittest.cc", |
| 50 ] | 51 ] |
| 51 | 52 |
| 52 deps = [ | 53 deps = [ |
| 53 ":remoting", | 54 ":remoting", |
| 54 ":rpc", | 55 ":rpc", |
| 55 "//base", | 56 "//base", |
| 56 "//base/test:test_support", | 57 "//base/test:test_support", |
| 57 "//media", | 58 "//media", |
| 58 "//media/mojo/interfaces:remoting", | 59 "//media/mojo/interfaces:remoting", |
| 59 "//mojo/edk/test:run_all_unittests", | |
| 60 "//testing/gmock", | 60 "//testing/gmock", |
| 61 "//testing/gtest", | 61 "//testing/gtest", |
| 62 "//ui/gfx:test_support", | 62 "//ui/gfx:test_support", |
| 63 "//ui/gfx/geometry", | 63 "//ui/gfx/geometry", |
| 64 ] | 64 ] |
| 65 } | 65 } |
| 66 |
| 67 test("media_remoting_unittests") { |
| 68 deps = [ |
| 69 ":media_remoting_tests", |
| 70 "//media/test:run_all_unittests", |
| 71 ] |
| 72 } |
| OLD | NEW |