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 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
64 ] | 64 ] |
65 | 65 |
66 deps = [ | 66 deps = [ |
67 ":rpc", | 67 ":rpc", |
68 "//base", | 68 "//base", |
69 "//media", | 69 "//media", |
70 "//media/mojo/interfaces:remoting", | 70 "//media/mojo/interfaces:remoting", |
71 "//mojo/public/cpp/bindings", | 71 "//mojo/public/cpp/bindings", |
72 "//skia", | 72 "//skia", |
73 "//ui/gfx", | 73 "//ui/gfx", |
| 74 "//ui/vector_icons", |
74 ] | 75 ] |
75 } | 76 } |
76 | 77 |
77 source_set("media_remoting_tests") { | 78 source_set("media_remoting_tests") { |
78 testonly = true | 79 testonly = true |
79 sources = [ | 80 sources = [ |
80 "courier_renderer_unittest.cc", | 81 "courier_renderer_unittest.cc", |
81 "demuxer_stream_adapter_unittest.cc", | 82 "demuxer_stream_adapter_unittest.cc", |
82 "fake_media_resource.cc", | 83 "fake_media_resource.cc", |
83 "fake_media_resource.h", | 84 "fake_media_resource.h", |
(...skipping 19 matching lines...) Expand all Loading... |
103 "//url", | 104 "//url", |
104 ] | 105 ] |
105 } | 106 } |
106 | 107 |
107 test("media_remoting_unittests") { | 108 test("media_remoting_unittests") { |
108 deps = [ | 109 deps = [ |
109 ":media_remoting_tests", | 110 ":media_remoting_tests", |
110 "//media/test:run_all_unittests", | 111 "//media/test:run_all_unittests", |
111 ] | 112 ] |
112 } | 113 } |
OLD | NEW |