blob: 843816fabc7c7cdcc6c3a180c6d5a5670f9672f7 [file] [log] [blame]
# Copyright 2019 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.
group("lib") {
testonly = true
deps = [
":ledger_lib_unittests",
"convert",
"coroutine",
"logging",
"socket",
"vmo",
]
}
executable("ledger_lib_unittests") {
testonly = true
deps = [
"//src/ledger/bin/testing:gtest_main",
"//src/ledger/lib/backoff:unittests",
"//src/ledger/lib/callback:unittests",
"//src/ledger/lib/convert:unittests",
"//src/ledger/lib/coroutine:unittests",
"//src/ledger/lib/coroutine/context:unittests",
"//src/ledger/lib/encoding:unittests",
"//src/ledger/lib/logging:unittests",
"//src/ledger/lib/socket:unittests",
"//src/ledger/lib/vmo:unittests",
]
}