blob: ade7c4fc8b169f6b1ea015a8b3d90069bd559c9a [file] [log] [blame]
# Copyright 2016 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/ledger/*" ]
source_set("environment") {
sources = [
"environment.cc",
"environment.h",
]
public_deps = [
"//garnet/public/lib/backoff",
"//garnet/public/lib/fxl",
"//peridot/bin/ledger/coroutine",
]
deps = [
"//zircon/public/lib/async-cpp",
]
configs += [ "//peridot/bin/ledger:ledger_config" ]
}
source_set("unittests") {
testonly = true
sources = [
"environment_unittest.cc",
]
deps = [
":environment",
"//garnet/public/lib/fxl",
"//garnet/public/lib/gtest",
]
configs += [ "//peridot/bin/ledger:ledger_config" ]
}