blob: 1f642938cd8fed18abe2d872a950260b8a9d4aa4 [file] [log] [blame]
# Copyright 2022 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 = [
"libbrillo",
"libchrome",
"libshill-client",
]
}
source_set("function_templates") {
sources = [
"network.cc",
"storage.cc",
]
configs += [ ":target_defaults" ]
}
if (use.test) {
source_set("test") {
sources = [
"network_test.cc",
"storage_test.cc",
]
configs += [
":target_defaults",
"//common-mk:test",
]
deps = [
":function_templates",
"//runtime_probe/utils:test_utils",
]
}
}