OLD | NEW |
1 //#filter substitution | 1 //#filter substitution |
2 /* -*- Mode: Java; c-basic-offset: 4; tab-width: 20; indent-tabs-mode: nil; -*- | 2 /* -*- Mode: Java; c-basic-offset: 4; tab-width: 20; indent-tabs-mode: nil; -*- |
3 * This Source Code Form is subject to the terms of the Mozilla Public | 3 * This Source Code Form is subject to the terms of the Mozilla Public |
4 * License, v. 2.0. If a copy of the MPL was not distributed with this | 4 * License, v. 2.0. If a copy of the MPL was not distributed with this |
5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ | 5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
6 | 6 |
7 package org.mozilla.gecko; | 7 package org.mozilla.gecko; |
8 | 8 |
9 import android.os.Build; | 9 import android.os.Build; |
10 | 10 |
(...skipping 305 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
316 //#endif | 316 //#endif |
317 | 317 |
318 public static final boolean MOZ_DRAGGABLE_URLBAR = false; | 318 public static final boolean MOZ_DRAGGABLE_URLBAR = false; |
319 | 319 |
320 public static final boolean MOZ_INSTALL_TRACKING = | 320 public static final boolean MOZ_INSTALL_TRACKING = |
321 //#ifdef MOZ_INSTALL_TRACKING | 321 //#ifdef MOZ_INSTALL_TRACKING |
322 true; | 322 true; |
323 //#else | 323 //#else |
324 false; | 324 false; |
325 //#endif | 325 //#endif |
| 326 |
| 327 public static final boolean ABB_RELEASE_BUILD = |
| 328 //#ifdef ABB_RELEASE_BUILD |
| 329 true; |
| 330 //#else |
| 331 false; |
| 332 //#endif |
| 333 |
326 } | 334 } |
OLD | NEW |