1
0

build.ck 533 B

12345678910111213141516171819202122232425262728293031323334353637
  1. /*++
  2. Copyright (c) 2014 Minoca Corp. All Rights Reserved
  3. Module Name:
  4. Libraries
  5. Abstract:
  6. This directory builds common libraries that run in multiple
  7. environments.
  8. Author:
  9. Evan Green 28-Mar-2014
  10. Environment:
  11. Any
  12. --*/
  13. function build() {
  14. test_apps = [
  15. "//lib/crypto/testcryp:",
  16. "//lib/fatlib/fattest:",
  17. "//lib/rtl/testrtl:",
  18. "//lib/yy/yytest:",
  19. "//kernel/mm/testmm:",
  20. ];
  21. entries = group("test_apps", test_apps);
  22. return entries;
  23. }
  24. return build();