build.ck 551 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. /*++
  2. Copyright (c) 2015 Minoca Corp. All Rights Reserved
  3. Module Name:
  4. Google EC
  5. Abstract:
  6. This directory contains the driver for the Google Embedded Controller.
  7. Author:
  8. Evan Green 25-Aug-2015
  9. Environment:
  10. Kernel
  11. --*/
  12. function build() {
  13. name = "goec";
  14. sources = [
  15. "goec.c",
  16. "keymap.c"
  17. ];
  18. dynlibs = [
  19. "//drivers/usrinput:usrinput"
  20. ];
  21. drv = {
  22. "label": name,
  23. "inputs": sources + dynlibs,
  24. };
  25. entries = driver(drv);
  26. return entries;
  27. }
  28. return build();