blob: c7694f9db7c7ddf5ddcff4da5e5d8a5a7cb796f3 [file] [log] [blame]
# Copyright 2017 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("sync_helper") {
sources = [
"mutable.h",
"sync_helper.cc",
"sync_helper.h",
]
public_deps = [
"//garnet/public/lib/callback",
"//src/lib/fxl",
]
configs += [ "//src/ledger:ledger_config" ]
}
source_set("unittests") {
testonly = true
sources = [
"mutable_unittest.cc",
"sync_helper_unittest.cc",
]
deps = [
":sync_helper",
"//third_party/googletest:gtest",
]
configs += [ "//src/ledger:ledger_config" ]
}