| 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 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 72 "//skia", | 72 "//skia", |
| 73 "//ui/gfx", | 73 "//ui/gfx", |
| 74 ] | 74 ] |
| 75 } | 75 } |
| 76 | 76 |
| 77 source_set("media_remoting_tests") { | 77 source_set("media_remoting_tests") { |
| 78 testonly = true | 78 testonly = true |
| 79 sources = [ | 79 sources = [ |
| 80 "courier_renderer_unittest.cc", | 80 "courier_renderer_unittest.cc", |
| 81 "demuxer_stream_adapter_unittest.cc", | 81 "demuxer_stream_adapter_unittest.cc", |
| 82 "end2end_test_renderer.cc", |
| 83 "end2end_test_renderer.h", |
| 82 "fake_media_resource.cc", | 84 "fake_media_resource.cc", |
| 83 "fake_media_resource.h", | 85 "fake_media_resource.h", |
| 84 "fake_remoter.cc", | 86 "fake_remoter.cc", |
| 85 "fake_remoter.h", | 87 "fake_remoter.h", |
| 86 "proto_utils_unittest.cc", | 88 "proto_utils_unittest.cc", |
| 89 "remote_receiver.cc", |
| 90 "remote_receiver.h", |
| 91 "remote_stream_provider.cc", |
| 92 "remote_stream_provider.h", |
| 87 "renderer_controller_unittest.cc", | 93 "renderer_controller_unittest.cc", |
| 88 "rpc_broker_unittest.cc", | 94 "rpc_broker_unittest.cc", |
| 89 ] | 95 ] |
| 90 | 96 |
| 91 deps = [ | 97 deps = [ |
| 92 ":remoting", | 98 ":remoting", |
| 93 ":rpc", | 99 ":rpc", |
| 94 "//base", | 100 "//base", |
| 95 "//base/test:test_support", | 101 "//base/test:test_support", |
| 96 "//media", | 102 "//media", |
| 97 "//media/base:test_support", | 103 "//media/base:test_support", |
| 98 "//media/mojo/interfaces:remoting", | 104 "//media/mojo/interfaces:remoting", |
| 99 "//testing/gmock", | 105 "//testing/gmock", |
| 100 "//testing/gtest", | 106 "//testing/gtest", |
| 101 "//ui/gfx:test_support", | 107 "//ui/gfx:test_support", |
| 102 "//ui/gfx/geometry", | 108 "//ui/gfx/geometry", |
| 103 "//url", | 109 "//url", |
| 104 ] | 110 ] |
| 105 } | 111 } |
| 106 | 112 |
| 107 test("media_remoting_unittests") { | 113 test("media_remoting_unittests") { |
| 108 deps = [ | 114 deps = [ |
| 109 ":media_remoting_tests", | 115 ":media_remoting_tests", |
| 110 "//media/test:run_all_unittests", | 116 "//media/test:run_all_unittests", |
| 111 ] | 117 ] |
| 112 } | 118 } |
| OLD | NEW |