blob: f7f46cba7c00f0153e3217a143f82a8a32822f24 [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/component/cpp",
"//garnet/public/lib/fxl",
"//garnet/public/lib/timekeeper",
"//garnet/public/lib/timekeeper:impl",
"//peridot/bin/ledger/coroutine",
"//peridot/lib/rng",
]
deps = [
"//peridot/lib/ledger_client:constants",
"//peridot/lib/rng:system",
"//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",
"//garnet/public/lib/timekeeper:testing",
"//peridot/lib/rng:testing",
]
configs += [ "//peridot/bin/ledger:ledger_config" ]
}