blob: 070bc59a46b698ea086451e912e281914feedbb8 [file] [log] [blame]
# Copyright 2017 The Fuchsia Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
group("cpp") {
public_deps = [
":message_queue_client",
":message_sender_client",
]
}
source_set("message_queue_client") {
sources = [
"message_queue_client.cc",
"message_queue_client.h",
]
public_deps = [
"//garnet/public/lib/fsl",
"//sdk/fidl/fuchsia.modular",
"//src/lib/fxl",
]
}
source_set("message_sender_client") {
sources = [
"message_sender_client.cc",
"message_sender_client.h",
]
deps = [
"//garnet/public/lib/fsl",
]
public_deps = [
"//sdk/fidl/fuchsia.modular",
"//src/lib/fxl",
]
}