| Index: chrome/browser/media/router/BUILD.gn
|
| diff --git a/chrome/browser/media/router/BUILD.gn b/chrome/browser/media/router/BUILD.gn
|
| index 5e728ee6b958c0d0b4dcc014ec06ac63b867aa2b..5f4f64511f4a0b58ff062dd31884c16855513e8d 100644
|
| --- a/chrome/browser/media/router/BUILD.gn
|
| +++ b/chrome/browser/media/router/BUILD.gn
|
| @@ -14,6 +14,7 @@ static_library("router") {
|
| "//components/keyed_service/core",
|
| "//content/public/browser",
|
| "//content/public/common",
|
| + "//net",
|
| "//third_party/icu",
|
| "//url",
|
| ]
|
| @@ -22,6 +23,8 @@ static_library("router") {
|
| "browser_presentation_connection_proxy.h",
|
| "create_presentation_connection_request.cc",
|
| "create_presentation_connection_request.h",
|
| + "discovery/media_sink_internal.cc",
|
| + "discovery/media_sink_internal.h",
|
| "issue.cc",
|
| "issue.h",
|
| "issue_manager.cc",
|
| @@ -104,10 +107,22 @@ mojom("mojo_bindings") {
|
|
|
| public_deps = [
|
| "//mojo/common:common_custom_types",
|
| + "//net/interfaces:interfaces",
|
| + "//url/mojo:url_mojom_gurl",
|
| "//url/mojo:url_mojom_origin",
|
| ]
|
| }
|
|
|
| +mojom("mojo_test_interfaces") {
|
| + sources = [
|
| + "mojo/media_router_traits_test_service.mojom",
|
| + ]
|
| +
|
| + public_deps = [
|
| + ":mojo_bindings",
|
| + ]
|
| +}
|
| +
|
| static_library("test_support") {
|
| testonly = true
|
| deps = [
|
| @@ -127,6 +142,7 @@ static_library("test_support") {
|
| if (!is_android) {
|
| deps += [
|
| ":mojo_bindings",
|
| + ":mojo_test_interfaces",
|
| "//extensions/common",
|
| ]
|
| sources += [
|
|
|