1 // Copyright 2015 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 package org.chromium.base; 6 7 /** 8 * Build configuration. Generated on a per-target basis. 9 */ 10 public class BuildConfig { 11 12 13 public static final String FIREBASE_APP_ID = ""; 14 15 public static final boolean DCHECK_IS_ON = false; 16 17 // The ID of the android string resource that stores the product version. 18 // This layer of indirection is necessary to make the resource dependency 19 // optional for android_apk targets/base_java (ex. for cronet). 20 public static final int R_STRING_PRODUCT_VERSION = 0; 21 } 22