blob: 7e2f9b6ef0d18f764cc5057395b16d09750f2400 [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/ledger/*" ]
source_set("lock") {
sources = [
"lock.cc",
"lock.h",
]
public_deps = [
"//garnet/public/lib/callback",
"//garnet/public/lib/fxl",
"//peridot/bin/ledger/coroutine",
]
configs += [ "//peridot/bin/ledger:ledger_config" ]
}
source_set("unittests") {
testonly = true
sources = [
"lock_unittest.cc",
]
deps = [
":lock",
"//garnet/public/lib/fxl",
"//third_party/googletest:gtest",
]
configs += [ "//peridot/bin/ledger:ledger_config" ]
}