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

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

Issue 2471573005: [Presentation API] (5th) (1-UA) integrate controller and receiver side for 1-UA messaging (Closed)
Patch Set: split renderer related changes into 4th patch Created 4 years 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 "//third_party/icu", 16 "//third_party/icu",
17 "//url", 17 "//url",
18 ] 18 ]
19 sources = [ 19 sources = [
20 "browser_presentation_connection_proxy.cc",
21 "browser_presentation_connection_proxy.h",
20 "create_presentation_connection_request.cc", 22 "create_presentation_connection_request.cc",
21 "create_presentation_connection_request.h", 23 "create_presentation_connection_request.h",
22 "issue.cc", 24 "issue.cc",
23 "issue.h", 25 "issue.h",
24 "issue_manager.cc", 26 "issue_manager.cc",
25 "issue_manager.h", 27 "issue_manager.h",
26 "issues_observer.cc", 28 "issues_observer.cc",
27 "issues_observer.h", 29 "issues_observer.h",
28 "media_route.cc", 30 "media_route.cc",
29 "media_route.h", 31 "media_route.h",
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after
124 deps += [ 126 deps += [
125 ":mojo_bindings", 127 ":mojo_bindings",
126 "//extensions/common", 128 "//extensions/common",
127 ] 129 ]
128 sources += [ 130 sources += [
129 "mojo/media_router_mojo_test.cc", 131 "mojo/media_router_mojo_test.cc",
130 "mojo/media_router_mojo_test.h", 132 "mojo/media_router_mojo_test.h",
131 ] 133 ]
132 } 134 }
133 } 135 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698