blob: 31de3e1d0ecad4322d2b7138e6aaf7b616685ee7 [file] [log] [blame]
# Copyright 2018 The Fuchsia 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("//build/config/fuchsia/rules.gni")
import("//build/package.gni")
package("bthog") {
deprecated_system_image = true
deps = [
":hog_driver"
]
drivers = [ {
name = "bthog.so"
} ]
}
driver_module("hog_driver") {
output_name = "bthog"
sources = [
"binding.c",
"hog.c",
"hog.h",
]
deps = [
"//zircon/public/lib/ddk",
"//zircon/public/lib/driver",
"//zircon/public/lib/zx",
]
}