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 18 matching lines...) Expand all Loading... |
29 "//media", | 29 "//media", |
30 ] | 30 ] |
31 | 31 |
32 public_deps = [ | 32 public_deps = [ |
33 ":media_remoting_proto", | 33 ":media_remoting_proto", |
34 ] | 34 ] |
35 } | 35 } |
36 | 36 |
37 source_set("remoting") { | 37 source_set("remoting") { |
38 sources = [ | 38 sources = [ |
39 "adaptive_renderer_factory.cc", | |
40 "adaptive_renderer_factory.h", | |
41 "courier_renderer.cc", | 39 "courier_renderer.cc", |
42 "courier_renderer.h", | 40 "courier_renderer.h", |
| 41 "courier_renderer_factory.cc", |
| 42 "courier_renderer_factory.h", |
43 "demuxer_stream_adapter.cc", | 43 "demuxer_stream_adapter.cc", |
44 "demuxer_stream_adapter.h", | 44 "demuxer_stream_adapter.h", |
45 "metrics.cc", | 45 "metrics.cc", |
46 "metrics.h", | 46 "metrics.h", |
47 "remoting_cdm.cc", | 47 "remoting_cdm.cc", |
48 "remoting_cdm.h", | 48 "remoting_cdm.h", |
49 "remoting_cdm_context.cc", | 49 "remoting_cdm_context.cc", |
50 "remoting_cdm_context.h", | 50 "remoting_cdm_context.h", |
51 "remoting_cdm_controller.cc", | 51 "remoting_cdm_controller.cc", |
52 "remoting_cdm_controller.h", | 52 "remoting_cdm_controller.h", |
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
108 "//url", | 108 "//url", |
109 ] | 109 ] |
110 } | 110 } |
111 | 111 |
112 test("media_remoting_unittests") { | 112 test("media_remoting_unittests") { |
113 deps = [ | 113 deps = [ |
114 ":media_remoting_tests", | 114 ":media_remoting_tests", |
115 "//media/test:run_all_unittests", | 115 "//media/test:run_all_unittests", |
116 ] | 116 ] |
117 } | 117 } |
OLD | NEW |