blob: 23acd9a26101ab84c935868cb7a8695d4256f4e9 [file] [log] [blame]
# Copyright 2022 The Fuchsia Authors
#
# Use of this source code is governed by a MIT-style
# license that can be found in the LICENSE file or at
# https://opensource.org/licenses/MIT
config("includes") {
include_dirs = [ "include" ]
}
source_set("motmot") {
public = [ "include/dev/power/motmot/init.h" ]
sources = [ "power.cc" ]
deps = [
"//zircon/kernel/dev/pdev",
"//zircon/kernel/dev/pdev/power",
"//zircon/kernel/dev/psci",
"//zircon/kernel/lib/debuglog",
]
public_configs = [ ":includes" ]
}