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

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

Issue 2701633002: [Media Router] Add DialMediaSinkService and DeviceDescriptionService (Closed)
Patch Set: Add DialMediaSinkCacheService and unit test 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 "//base", 11 "//base",
12 "//chrome/common:constants", 12 "//chrome/common:constants",
13 "//components/keyed_service/content", 13 "//components/keyed_service/content",
14 "//components/keyed_service/core", 14 "//components/keyed_service/core",
15 "//content/public/browser", 15 "//content/public/browser",
16 "//content/public/common", 16 "//content/public/common",
17 "//third_party/icu", 17 "//third_party/icu",
18 "//third_party/libxml",
mark a. foltz 2017/03/11 00:08:15 Per our chat, I think we'll have to wait until the
zhaobin 2017/03/28 13:36:59 Done.
18 "//url", 19 "//url",
19 ] 20 ]
20 sources = [ 21 sources = [
21 "browser_presentation_connection_proxy.cc", 22 "browser_presentation_connection_proxy.cc",
22 "browser_presentation_connection_proxy.h", 23 "browser_presentation_connection_proxy.h",
23 "create_presentation_connection_request.cc", 24 "create_presentation_connection_request.cc",
24 "create_presentation_connection_request.h", 25 "create_presentation_connection_request.h",
26 "device_description_service.cc",
27 "device_description_service.h",
28 "dial_media_sink_cache_service.cc",
29 "dial_media_sink_cache_service.h",
30 "dial_media_sink_service.cc",
31 "dial_media_sink_service.h",
25 "discovery/media_sink_internal.cc", 32 "discovery/media_sink_internal.cc",
26 "discovery/media_sink_internal.h", 33 "discovery/media_sink_internal.h",
27 "issue.cc", 34 "issue.cc",
28 "issue.h", 35 "issue.h",
29 "issue_manager.cc", 36 "issue_manager.cc",
30 "issue_manager.h", 37 "issue_manager.h",
31 "issues_observer.cc", 38 "issues_observer.cc",
32 "issues_observer.h", 39 "issues_observer.h",
33 "media_route.cc", 40 "media_route.cc",
34 "media_route.h", 41 "media_route.h",
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after
122 } 129 }
123 130
124 static_library("test_support") { 131 static_library("test_support") {
125 testonly = true 132 testonly = true
126 deps = [ 133 deps = [
127 ":router", 134 ":router",
128 "//chrome/test:test_support", 135 "//chrome/test:test_support",
129 "//testing/gmock", 136 "//testing/gmock",
130 ] 137 ]
131 sources = [ 138 sources = [
139 "mock_device_description_service.cc",
140 "mock_device_description_service.h",
132 "mock_media_router.cc", 141 "mock_media_router.cc",
133 "mock_media_router.h", 142 "mock_media_router.h",
134 "mock_screen_availability_listener.cc", 143 "mock_screen_availability_listener.cc",
135 "mock_screen_availability_listener.h", 144 "mock_screen_availability_listener.h",
136 "test_helper.cc", 145 "test_helper.cc",
137 "test_helper.h", 146 "test_helper.h",
138 ] 147 ]
139 148
140 if (!is_android) { 149 if (!is_android) {
141 deps += [ 150 deps += [
142 ":mojo_bindings", 151 ":mojo_bindings",
143 ":mojo_test_interfaces", 152 ":mojo_test_interfaces",
144 "//extensions/common", 153 "//extensions/common",
145 ] 154 ]
146 sources += [ 155 sources += [
147 "mojo/media_router_mojo_test.cc", 156 "mojo/media_router_mojo_test.cc",
148 "mojo/media_router_mojo_test.h", 157 "mojo/media_router_mojo_test.h",
149 ] 158 ]
150 } 159 }
151 } 160 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698