blob: 700e5d0eda1b39e3a6f64c2dc71d5f2a16b33e49 [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.
zx_test("ctor") {
sources = [
"ctor.cc",
]
deps = [
":dso-ctor",
"$zx/system/ulib/fdio",
"$zx/system/ulib/unittest",
]
}
zx_library("dso-ctor") {
visibility = [ ":*" ]
testonly = true
shared = true
sources = [
"dso-ctor/dso-ctor.cc",
]
deps = [
"$zx/system/ulib/unittest",
]
}