Josh Haberman | 1523936 | 2016-03-31 14:18:34 -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 | |
Adam Cozzette | 671e075 | 2017-02-23 11:32:16 -0800 | [diff] [blame] | 10 | // Include a dummy provide statement so that closurebuilder.py does not skip over this |
| 11 | // file. |
| 12 | goog.provide('jspb.ExportTestDeps'); |
| 13 | |
Josh Haberman | 1523936 | 2016-03-31 14:18:34 -0700 | [diff] [blame] | 14 | goog.require('goog.crypt.base64'); |
Adam Cozzette | e372df5 | 2017-12-04 15:08:10 -0800 | [diff] [blame] | 15 | goog.require('goog.testing.PropertyReplacer'); |
Josh Haberman | 1523936 | 2016-03-31 14:18:34 -0700 | [diff] [blame] | 16 | goog.require('jspb.arith.Int64'); |
| 17 | goog.require('jspb.arith.UInt64'); |
| 18 | goog.require('jspb.BinaryEncoder'); |
| 19 | goog.require('jspb.BinaryDecoder'); |
Adam Cozzette | 40f3586 | 2016-11-18 12:32:52 -0800 | [diff] [blame] | 20 | goog.require('jspb.BinaryWriter'); |
Josh Haberman | 1523936 | 2016-03-31 14:18:34 -0700 | [diff] [blame] | 21 | goog.require('jspb.utils'); |
| 22 | |
| 23 | exports.goog = goog; |
| 24 | exports.jspb = jspb; |