OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 /** |
| 6 * @fileoverview Code to execute before Closure's base.js. |
| 7 */ |
| 8 |
| 9 // Tell Closure to load JavaScript code from the extension root directory. |
| 10 window.CLOSURE_BASE_PATH = chrome.extension.getURL('/closure/'); |
| 11 |
| 12 // Tell Closure not to load deps.js; it's included by manifest.json already. |
| 13 window.CLOSURE_NO_DEPS = true; |
| 14 |
| 15 // Tell Closure to use a loading mechanism designed for Chrome content |
| 16 // scripts. |
| 17 window.CHROME_CONTENT_SCRIPT = true; |
OLD | NEW |