Austin Schuh | 40c1652 | 2018-10-28 20:27:54 -0700 | [diff] [blame^] | 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 | |
| 10 | // Include a dummy provide statement so that closurebuilder.py does not skip over this |
| 11 | // file. |
| 12 | goog.provide('jspb.ExportTestDeps'); |
| 13 | |
| 14 | goog.require('goog.crypt.base64'); |
| 15 | goog.require('goog.testing.PropertyReplacer'); |
| 16 | goog.require('jspb.arith.Int64'); |
| 17 | goog.require('jspb.arith.UInt64'); |
| 18 | goog.require('jspb.BinaryEncoder'); |
| 19 | goog.require('jspb.BinaryDecoder'); |
| 20 | goog.require('jspb.BinaryWriter'); |
| 21 | goog.require('jspb.utils'); |
| 22 | |
| 23 | exports.goog = goog; |
| 24 | exports.jspb = jspb; |