build.ck 815 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. /*++
  2. Copyright (c) 2014 Minoca Corp.
  3. This file is licensed under the terms of the GNU General Public License
  4. version 3. Alternative licensing terms are available. Contact
  5. info@minocacorp.com for details. See the LICENSE file at the root of this
  6. project for complete licensing information.
  7. Module Name:
  8. Libraries
  9. Abstract:
  10. This directory builds common libraries that run in multiple
  11. environments.
  12. Author:
  13. Evan Green 28-Mar-2014
  14. Environment:
  15. Any
  16. --*/
  17. from menv import group;
  18. function build() {
  19. var entries;
  20. var testApps;
  21. testApps = [
  22. "lib/crypto/testcryp:",
  23. "lib/fatlib/fattest:",
  24. "lib/rtl/testrtl:",
  25. "lib/yy/yytest:",
  26. "kernel/mm/testmm:",
  27. ];
  28. entries = group("test_apps", testApps);
  29. return entries;
  30. }