| # Copyright 2019 The Chromium Authors. All rights reserved. |
| # 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" ] |
| } |
| |
| source_set("external_mojo_broker") { |
| sources = [ |
| "external_mojo_broker.cc", |
| "external_mojo_broker.h", |
| ] |
| deps = [ |
| ":common", |
| "//base", |
| "//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", |
| ] |
| } |