blob: 32724d484493cb93ad07cb083f304050e2d213c5 [file] [log] [blame]
# Copyright 2018 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.
visibility = [
"//peridot/bin/*",
"//peridot/lib/*",
]
source_set("cobalt") {
sources = [
"cobalt.cc",
"cobalt.h",
]
public_deps = [
"//garnet/public/lib/app/cpp",
"//garnet/public/lib/fxl",
]
deps = [
"//garnet/lib/backoff",
"//garnet/lib/callback",
"//garnet/public/lib/cobalt/fidl",
]
}
source_set("unittests") {
testonly = true
sources = [
"cobalt_unittest.cc",
]
public_deps = [
"//garnet/public/lib/svc/cpp",
]
deps = [
":cobalt",
"//garnet/lib/gtest",
"//zircon/public/lib/async-testutils"
]
}