blob: 84bc2335865c024d7544efccab545e3c0a57bb26 [file] [log] [blame]
# Copyright 2018 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/test.gni")
# A collection of utilities useful to debuggers and similar programs.
static_library("elflib") {
sources = [
"elflib.cc",
]
}
test("elflib_tests") {
sources = [
"elflib_unittest.cc",
]
deps = [
":elflib",
"//third_party/googletest:gtest",
"//third_party/googletest:gtest_main",
]
}