blob: 83b9a118f60bd1c98897b8257d4cc6c08fb81308 [file] [log] [blame]
// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
package org.chromium.chrome.browser;
class ChromeVersionConstants {
static final String PRODUCT_NAME = "@PRODUCT_FULLNAME@";
static final String PRODUCT_VERSION = "@MAJOR@.@MINOR@.@BUILD@.@PATCH@";
static final boolean IS_OFFICIAL_BUILD = @OFFICIAL_BUILD@ == 1;
static final int CHANNEL_DEFAULT = 0;
static final int CHANNEL_CANARY = 1;
static final int CHANNEL_DEV = 2;
static final int CHANNEL_BETA = 3;
static final int CHANNEL_STABLE = 4;
static final int CHANNEL = CHANNEL_@CHANNEL@;
}