blob: c9ec3363d6e14937a7f8443bd348f390de4d5acf [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.
import("//build/zircon/zx_library.gni")
zx_library("elf-search") {
sdk = "source"
sdk_headers = [ "elf-search.h" ]
sources = [ "elf-search.cc" ]
public_deps = [
"//zircon/system/ulib/fbl",
"//zircon/system/ulib/zx",
]
deps = [
"//src/lib/elfldltl",
"//zircon/system/ulib/fbl",
"//zircon/system/ulib/zx",
]
}
group("tests") {
testonly = true
deps = [ "test" ]
}