671e075c5e
There are two motivations for this: 1) calcdeps.py is deprecated and replaced by closurebuilder.py. 2) As part of this I was able to tweak things so that the Closure compiler does not attempt to examine every .js file in the tree under js/. This makes it possible to put compatibility tests and related files in a subdirectory without them getting mixed up with the main .js files we care about.
24 lines
737 B
JavaScript
24 lines
737 B
JavaScript
/**
|
|
* @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');
|
|
|
|
goog.require('goog.crypt.base64');
|
|
goog.require('jspb.arith.Int64');
|
|
goog.require('jspb.arith.UInt64');
|
|
goog.require('jspb.BinaryEncoder');
|
|
goog.require('jspb.BinaryDecoder');
|
|
goog.require('jspb.BinaryWriter');
|
|
goog.require('jspb.utils');
|
|
|
|
exports.goog = goog;
|
|
exports.jspb = jspb;
|