| # Copyright 2023 The ChromiumOS Authors | |
| # 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") | |
| pkg_config("target_defaults") { | |
| pkg_deps = [ | |
| "dbus-1", | |
| "libbrillo", | |
| "libchrome", | |
| "libfeatures", | |
| ] | |
| } | |
| source_set("features") { | |
| sources = [ "features.cc" ] | |
| all_dependent_configs = [ ":target_defaults" ] | |
| } |