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 The ChromeVox build configuration. |
| 7 * |
| 8 * This file encapsulates the ChromeVox build information. |
| 9 * It is yet another page script that is injected by the |
| 10 * content script in case some other page scripts requests |
| 11 * it in order to perform build specific operations. |
| 12 */ |
| 13 |
| 14 goog.provide('cvox.BuildDefs'); |
| 15 |
| 16 /** |
| 17 * Undefined build type. |
| 18 * @type {number} |
| 19 */ |
| 20 var BUILD_TYPE_UNDEFINED = -1; |
| 21 |
| 22 /** |
| 23 * Chrome user build type. |
| 24 * @type {number} |
| 25 */ |
| 26 var BUILD_TYPE_CHROME = 0; |
| 27 |
| 28 /** |
| 29 * Android user build type. |
| 30 * @type {number} |
| 31 */ |
| 32 var BUILD_TYPE_ANDROID = 1; |
| 33 |
| 34 /** |
| 35 * Chrome user build type. |
| 36 * @type {number} |
| 37 */ |
| 38 var BUILD_TYPE_ANDROID_DEV = 2; |
OLD | NEW |