mirror of
https://github.com/shaka-project/shaka-player.git
synced 2026-06-26 17:46:26 +03:00
7433b47c2a
Tests all demo assets through the compiled library. To debug, use --uncompiled to run them with the uncompiled library. These new tests are off by default because they use external assets and run very slowly. Use --external to run these tests. Change-Id: If1648108dbb9a323d59f6b0e14b4fe6c446a90d2
29 lines
799 B
JavaScript
29 lines
799 B
JavaScript
/**
|
|
* @license
|
|
* Copyright 2016 Google Inc.
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
/**
|
|
* @fileoverview Externs for requirejs.
|
|
* @externs
|
|
*/
|
|
|
|
|
|
/**
|
|
* @param {!Array.<string>} moduleNames
|
|
* @param {Function} callback
|
|
*/
|
|
var require = function(moduleNames, callback) {};
|