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

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: merge with master Created 3 years, 10 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 "//url", 18 "//url",
19 ] 19 ]
20 sources = [ 20 sources = [
21 "browser_presentation_connection_proxy.cc",
22 "browser_presentation_connection_proxy.h",
21 "create_presentation_connection_request.cc", 23 "create_presentation_connection_request.cc",
22 "create_presentation_connection_request.h", 24 "create_presentation_connection_request.h",
23 "issue.cc", 25 "issue.cc",
24 "issue.h", 26 "issue.h",
25 "issue_manager.cc", 27 "issue_manager.cc",
26 "issue_manager.h", 28 "issue_manager.h",
27 "issues_observer.cc", 29 "issues_observer.cc",
28 "issues_observer.h", 30 "issues_observer.h",
29 "media_route.cc", 31 "media_route.cc",
30 "media_route.h", 32 "media_route.h",
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after
125 deps += [ 127 deps += [
126 ":mojo_bindings", 128 ":mojo_bindings",
127 "//extensions/common", 129 "//extensions/common",
128 ] 130 ]
129 sources += [ 131 sources += [
130 "mojo/media_router_mojo_test.cc", 132 "mojo/media_router_mojo_test.cc",
131 "mojo/media_router_mojo_test.h", 133 "mojo/media_router_mojo_test.h",
132 ] 134 ]
133 } 135 }
134 } 136 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698