Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(174)

Side by Side Diff: media/remoting/BUILD.gn

Issue 2457563002: Media Remoting: Add remoting control logic for encrypted contents. (Closed)
Patch Set: Addressed comments from PS#12. Fixed ASAN. Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « media/base/cdm_context.cc ('k') | media/remoting/fake_remoting_controller.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 19 matching lines...) Expand all
30 ":media_remoting_proto", 30 ":media_remoting_proto",
31 ] 31 ]
32 } 32 }
33 33
34 source_set("remoting") { 34 source_set("remoting") {
35 sources = [ 35 sources = [
36 "remote_demuxer_stream_adapter.cc", 36 "remote_demuxer_stream_adapter.cc",
37 "remote_demuxer_stream_adapter.h", 37 "remote_demuxer_stream_adapter.h",
38 "remote_renderer_impl.cc", 38 "remote_renderer_impl.cc",
39 "remote_renderer_impl.h", 39 "remote_renderer_impl.h",
40 "remoting_controller.cc", 40 "remoting_cdm.cc",
41 "remoting_controller.h", 41 "remoting_cdm.h",
42 "remoting_cdm_context.cc",
43 "remoting_cdm_context.h",
44 "remoting_cdm_controller.cc",
45 "remoting_cdm_controller.h",
46 "remoting_cdm_factory.cc",
47 "remoting_cdm_factory.h",
48 "remoting_renderer_controller.cc",
49 "remoting_renderer_controller.h",
42 "remoting_renderer_factory.cc", 50 "remoting_renderer_factory.cc",
43 "remoting_renderer_factory.h", 51 "remoting_renderer_factory.h",
52 "remoting_sink_observer.cc",
53 "remoting_sink_observer.h",
54 "remoting_source_impl.cc",
55 "remoting_source_impl.h",
44 ] 56 ]
45 deps = [ 57 deps = [
46 ":rpc", 58 ":rpc",
47 "//base", 59 "//base",
48 "//media", 60 "//media",
49 "//media/mojo/interfaces:remoting", 61 "//media/mojo/interfaces:remoting",
50 "//mojo/public/cpp/bindings", 62 "//mojo/public/cpp/bindings",
51 ] 63 ]
52 } 64 }
53 65
54 source_set("media_remoting_tests") { 66 source_set("media_remoting_tests") {
55 testonly = true 67 testonly = true
56 sources = [ 68 sources = [
57 "fake_remoting_controller.cc", 69 "fake_remoting_controller.cc",
58 "fake_remoting_controller.h", 70 "fake_remoting_controller.h",
59 "fake_remoting_demuxer_stream_provider.cc", 71 "fake_remoting_demuxer_stream_provider.cc",
60 "fake_remoting_demuxer_stream_provider.h", 72 "fake_remoting_demuxer_stream_provider.h",
61 "remote_demuxer_stream_adapter_unittest.cc", 73 "remote_demuxer_stream_adapter_unittest.cc",
62 "remote_renderer_impl_unittest.cc", 74 "remote_renderer_impl_unittest.cc",
63 "remoting_controller_unittest.cc", 75 "remoting_renderer_controller_unittest.cc",
64 "rpc/proto_utils_unittest.cc", 76 "rpc/proto_utils_unittest.cc",
65 "rpc/rpc_broker_unittest.cc", 77 "rpc/rpc_broker_unittest.cc",
66 ] 78 ]
67 79
68 deps = [ 80 deps = [
69 ":remoting", 81 ":remoting",
70 ":rpc", 82 ":rpc",
71 "//base", 83 "//base",
72 "//base/test:test_support", 84 "//base/test:test_support",
73 "//media", 85 "//media",
74 "//media/mojo/interfaces:remoting", 86 "//media/mojo/interfaces:remoting",
75 "//testing/gmock", 87 "//testing/gmock",
76 "//testing/gtest", 88 "//testing/gtest",
77 "//ui/gfx:test_support", 89 "//ui/gfx:test_support",
78 "//ui/gfx/geometry", 90 "//ui/gfx/geometry",
91 "//url",
79 ] 92 ]
80 } 93 }
81 94
82 test("media_remoting_unittests") { 95 test("media_remoting_unittests") {
83 deps = [ 96 deps = [
84 ":media_remoting_tests", 97 ":media_remoting_tests",
85 "//media/test:run_all_unittests", 98 "//media/test:run_all_unittests",
86 ] 99 ]
87 } 100 }
OLDNEW
« no previous file with comments | « media/base/cdm_context.cc ('k') | media/remoting/fake_remoting_controller.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698