/*++ Copyright (c) 2015 Minoca Corp. All Rights Reserved Module Name: Google EC Abstract: This directory contains the driver for the Google Embedded Controller. Author: Evan Green 25-Aug-2015 Environment: Kernel --*/ function build() { name = "goec"; sources = [ "goec.c", "keymap.c" ]; dynlibs = [ "//drivers/usrinput:usrinput" ]; drv = { "label": name, "inputs": sources + dynlibs, }; entries = driver(drv); return entries; } return build();