blob: ad37e29b084dc4937344926e35b32d0e562d0cc3 [file] [log] [blame] [edit]
# 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")
group("all") {
deps = [ ":connectivity_test_provider" ]
}
pkg_config("pkg_deps") {
pkg_deps = [
"libbrillo",
"libchrome",
"libmojo",
]
}
executable("connectivity_test_provider") {
sources = [ "connectivity_test_provider.cc" ]
configs += [ ":pkg_deps" ]
install_path = "/usr/libexec/diagnostics"
deps =
[ "//diagnostics/mojom/public:cros_healthd_mojo_connectivity_bindings" ]
}