export_testdeps.js 568 B

123456789101112131415161718
  1. /**
  2. * @fileoverview Export symbols needed by tests in CommonJS style.
  3. *
  4. * This file is like export.js, but for symbols that are only used by tests.
  5. * However we exclude assert functions here, because they are exported into
  6. * the global namespace, so those are handled as a special case in
  7. * export_asserts.js.
  8. */
  9. goog.require('goog.crypt.base64');
  10. goog.require('jspb.arith.Int64');
  11. goog.require('jspb.arith.UInt64');
  12. goog.require('jspb.BinaryEncoder');
  13. goog.require('jspb.BinaryDecoder');
  14. goog.require('jspb.utils');
  15. exports.goog = goog;
  16. exports.jspb = jspb;