blob: e7e0f3bf8c29ba6ba89f7d43a9b6b32faa1682e2 [file] [log] [blame]
# Copyright 2020 The Chromium OS 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("//common-mk/pkg_config.gni")
group("all") {
deps = [ ":syslog-cat" ]
}
pkg_config("target_defaults") {
pkg_deps = [ "libchrome-${libbase_ver}" ]
}
executable("syslog-cat") {
configs += [ ":target_defaults" ]
sources = [ "main.cc" ]
install_path = "sbin"
}