blob: 8dbf48d9fa19b84554a467fe6fe8c5430e81135f [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" ]
}
executable("syslog-cat") {
configs += [ ":target_defaults" ]
sources = [ "main.cc" ]
install_path = "sbin"
}