12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- /*++
- 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();
|