blob: 7575094b95ce6d81dc0fd8dea06dd5cbaa334b2b [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.
import("//build/test/test_package.gni")
source_set("backoff") {
sources = [
"backoff.h",
"exponential_backoff.cc",
"exponential_backoff.h",
]
public_deps = [
"//zircon/public/lib/fit",
"//zircon/public/lib/zx",
]
deps = [ "//src/ledger/lib/logging" ]
}
source_set("unittests") {
testonly = true
sources = [ "exponential_backoff_unittest.cc" ]
deps = [
":backoff",
"//third_party/googletest:gtest",
]
}