| 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 "interstitial.cc", | 45 "interstitial.cc", |
| 46 "interstitial.h", | 46 "interstitial.h", |
| 47 "metrics.cc", | 47 "metrics.cc", |
| 48 "metrics.h", | 48 "metrics.h", |
| 49 "remoting_cdm.cc", | 49 "remoting_cdm.cc", |
| 50 "remoting_cdm.h", | 50 "remoting_cdm.h", |
| 51 "remoting_cdm_context.cc", | 51 "remoting_cdm_context.cc", |
| 52 "remoting_cdm_context.h", | 52 "remoting_cdm_context.h", |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 104 "//url", | 104 "//url", |
| 105 ] | 105 ] |
| 106 } | 106 } |
| 107 | 107 |
| 108 test("media_remoting_unittests") { | 108 test("media_remoting_unittests") { |
| 109 deps = [ | 109 deps = [ |
| 110 ":media_remoting_tests", | 110 ":media_remoting_tests", |
| 111 "//media/test:run_all_unittests", | 111 "//media/test:run_all_unittests", |
| 112 ] | 112 ] |
| 113 } | 113 } |
| OLD | NEW |