export_testdeps.js 737 B

1234567891011121314151617181920212223
  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. // Include a dummy provide statement so that closurebuilder.py does not skip over this
  10. // file.
  11. goog.provide('jspb.ExportTestDeps');
  12. goog.require('goog.crypt.base64');
  13. goog.require('jspb.arith.Int64');
  14. goog.require('jspb.arith.UInt64');
  15. goog.require('jspb.BinaryEncoder');
  16. goog.require('jspb.BinaryDecoder');
  17. goog.require('jspb.BinaryWriter');
  18. goog.require('jspb.utils');
  19. exports.goog = goog;
  20. exports.jspb = jspb;