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