blob: 13c167341f0eefc7abbf9a6aa03c0b5137622f64 [file] [log] [blame]
# Copyright 2022 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 = [ ":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" ]
}