protobuf/js/commonjs/export_testdeps.js

25 lines
784 B
JavaScript
Raw Normal View History

2016-03-31 21:18:34 +00:00
/**
* @fileoverview Export symbols needed by tests in CommonJS style.
*
* This file is like export.js, but for symbols that are only used by tests.
* However we exclude assert functions here, because they are exported into
* the global namespace, so those are handled as a special case in
* export_asserts.js.
*/
// Include a dummy provide statement so that closurebuilder.py does not skip over this
// file.
goog.provide('jspb.ExportTestDeps');
2016-03-31 21:18:34 +00:00
goog.require('goog.crypt.base64');
2017-12-04 23:08:10 +00:00
goog.require('goog.testing.PropertyReplacer');
2016-03-31 21:18:34 +00:00
goog.require('jspb.arith.Int64');
goog.require('jspb.arith.UInt64');
goog.require('jspb.BinaryEncoder');
goog.require('jspb.BinaryDecoder');
2016-11-18 20:32:52 +00:00
goog.require('jspb.BinaryWriter');
2016-03-31 21:18:34 +00:00
goog.require('jspb.utils');
exports.goog = goog;
exports.jspb = jspb;