# Copyright 2019 The Chromium Authors
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
source_set("common") {
sources = [
"common.cc",
"common.h",
]
deps = [
"//base",
"//chromecast/base:chromecast_switches",
]
}
source_set("external_mojo_broker") {
sources = [
"external_mojo_broker.cc",
"external_mojo_broker.h",
]
deps = [
":common",
"//base",
"//chromecast:chromecast_buildflags",
"//chromecast/external_mojo/public/mojom",
"//mojo/public/cpp/bindings",
"//mojo/public/cpp/platform",
"//mojo/public/cpp/system",
"//services/service_manager/public/cpp",
"//services/service_manager/public/mojom",
]
}