blob: 0b3473136bc305501e73ede33d176ff5f3626533 [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("test") {
testonly = true
deps = [
":elf-search",
]
}
zx_library("elf") {
sources = [
"elf.c",
]
deps = [
"$zx/system/ulib/elfload",
"$zx/system/ulib/zircon",
]
testonly = true
visibility = [ ":*" ]
}
zx_executable("elf-search-test-helper") {
sources = [
"helper.cc",
]
testonly = true
visibility = [ ":*" ]
}
zx_test("elf-search") {
sources = [
"elf-search-test.cc",
]
deps = [
":elf",
"$zx/system/ulib/elf-search",
"$zx/system/ulib/fbl",
"$zx/system/ulib/fdio",
"$zx/system/ulib/test-utils",
"$zx/system/ulib/unittest",
"$zx/system/ulib/zircon",
"$zx/system/ulib/zx",
]
data_deps = [
":elf-search-test-helper",
]
}