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

Side by Side Diff: chrome/browser/media/router/BUILD.gn

Issue 2727123002: [Media Router] Custom Controls 1 - Add MediaStatus, MediaRouteController, and mojo interfaces (Closed)
Patch Set: Change comment Created 3 years, 9 months 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
OLDNEW
1 # Copyright 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 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 5
6 import("//mojo/public/tools/bindings/mojom.gni") 6 import("//mojo/public/tools/bindings/mojom.gni")
7 import("//testing/test.gni") 7 import("//testing/test.gni")
8 8
9 static_library("router") { 9 static_library("router") {
10 deps = [ 10 deps = [
11 ":mojo_bindings_common",
11 "//base", 12 "//base",
12 "//chrome/common:constants", 13 "//chrome/common:constants",
13 "//components/keyed_service/content", 14 "//components/keyed_service/content",
14 "//components/keyed_service/core", 15 "//components/keyed_service/core",
15 "//content/public/browser", 16 "//content/public/browser",
16 "//content/public/common", 17 "//content/public/common",
17 "//net", 18 "//net",
18 "//third_party/icu", 19 "//third_party/icu",
19 "//url", 20 "//url",
20 ] 21 ]
(...skipping 26 matching lines...) Expand all
47 "media_sink.cc", 48 "media_sink.cc",
48 "media_sink.h", 49 "media_sink.h",
49 "media_sink_service.cc", 50 "media_sink_service.cc",
50 "media_sink_service.h", 51 "media_sink_service.h",
51 "media_sinks_observer.cc", 52 "media_sinks_observer.cc",
52 "media_sinks_observer.h", 53 "media_sinks_observer.h",
53 "media_source.cc", 54 "media_source.cc",
54 "media_source.h", 55 "media_source.h",
55 "media_source_helper.cc", 56 "media_source_helper.cc",
56 "media_source_helper.h", 57 "media_source_helper.h",
58 "media_status.cc",
59 "media_status.h",
60 "mojo/media_route_controller.cc",
61 "mojo/media_route_controller.h",
57 "offscreen_presentation_manager.cc", 62 "offscreen_presentation_manager.cc",
58 "offscreen_presentation_manager.h", 63 "offscreen_presentation_manager.h",
59 "offscreen_presentation_manager_factory.cc", 64 "offscreen_presentation_manager_factory.cc",
60 "offscreen_presentation_manager_factory.h", 65 "offscreen_presentation_manager_factory.h",
61 "presentation_media_sinks_observer.cc", 66 "presentation_media_sinks_observer.cc",
62 "presentation_media_sinks_observer.h", 67 "presentation_media_sinks_observer.h",
63 "presentation_request.cc", 68 "presentation_request.cc",
64 "presentation_request.h", 69 "presentation_request.h",
65 "presentation_service_delegate_impl.cc", 70 "presentation_service_delegate_impl.cc",
66 "presentation_service_delegate_impl.h", 71 "presentation_service_delegate_impl.h",
(...skipping 26 matching lines...) Expand all
93 "mojo/media_route_provider_util_win.cc", 98 "mojo/media_route_provider_util_win.cc",
94 "mojo/media_route_provider_util_win.h", 99 "mojo/media_route_provider_util_win.h",
95 "mojo/media_router_mojo_impl.cc", 100 "mojo/media_router_mojo_impl.cc",
96 "mojo/media_router_mojo_impl.h", 101 "mojo/media_router_mojo_impl.h",
97 "mojo/media_router_mojo_metrics.cc", 102 "mojo/media_router_mojo_metrics.cc",
98 "mojo/media_router_mojo_metrics.h", 103 "mojo/media_router_mojo_metrics.h",
99 ] 104 ]
100 } 105 }
101 } 106 }
102 107
108 mojom("mojo_bindings_common") {
109 sources = [
110 "mojo/media_controller.mojom",
111 "mojo/media_status.mojom",
112 ]
113
114 public_deps = [
115 "//mojo/common:common_custom_types",
116 ]
117 }
118
103 mojom("mojo_bindings") { 119 mojom("mojo_bindings") {
104 sources = [ 120 sources = [
105 "mojo/media_router.mojom", 121 "mojo/media_router.mojom",
106 ] 122 ]
107 123
108 public_deps = [ 124 public_deps = [
125 ":mojo_bindings_common",
109 "//mojo/common:common_custom_types", 126 "//mojo/common:common_custom_types",
110 "//net/interfaces:interfaces", 127 "//net/interfaces:interfaces",
111 "//url/mojo:url_mojom_gurl", 128 "//url/mojo:url_mojom_gurl",
112 "//url/mojo:url_mojom_origin", 129 "//url/mojo:url_mojom_origin",
113 ] 130 ]
114 } 131 }
115 132
116 mojom("mojo_test_interfaces") { 133 mojom("mojo_test_interfaces") {
117 sources = [ 134 sources = [
118 "mojo/media_router_traits_test_service.mojom", 135 "mojo/media_router_traits_test_service.mojom",
(...skipping 25 matching lines...) Expand all
144 ":mojo_bindings", 161 ":mojo_bindings",
145 ":mojo_test_interfaces", 162 ":mojo_test_interfaces",
146 "//extensions/common", 163 "//extensions/common",
147 ] 164 ]
148 sources += [ 165 sources += [
149 "mojo/media_router_mojo_test.cc", 166 "mojo/media_router_mojo_test.cc",
150 "mojo/media_router_mojo_test.h", 167 "mojo/media_router_mojo_test.h",
151 ] 168 ]
152 } 169 }
153 } 170 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/media/router/media_status.h » ('j') | extensions/renderer/dispatcher.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698