1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121
|
// Copyright 2015 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
package org.chromium.build;
#define Q(x) #x
#define QUOTE(x) Q(x)
/**
* Build configuration. Generated on a per-target basis.
*/
public class BuildConfig {
#if defined(_ENABLE_ASSERTS)
public static boolean ENABLE_ASSERTS = true;
#else
public static boolean ENABLE_ASSERTS;
#endif
#if defined(_IS_UBSAN)
public static boolean IS_UBSAN = true;
#else
public static boolean IS_UBSAN;
#endif
#if defined(_IS_CHROME_BRANDED)
public static boolean IS_CHROME_BRANDED = true;
#else
public static boolean IS_CHROME_BRANDED;
#endif
// The ID of the android string resource that stores the product version.
// This layer of indirection is necessary to make the resource dependency
// optional for android_apk targets/base_java (ex. for cronet).
#if defined(_RESOURCES_VERSION_VARIABLE)
public static int R_STRING_PRODUCT_VERSION = _RESOURCES_VERSION_VARIABLE;
#else
public static int R_STRING_PRODUCT_VERSION;
#endif
// Minimum SDK Version supported by this apk.
// Be cautious when using this value, as it can happen that older apks get
// installed on newer Android version (e.g. when a device goes through a
// system upgrade). It is also convenient for developing to have all
// features available through a single APK.
// However, it's pretty safe to assument that a feature specific to KitKat
// will never be needed in an APK with MIN_SDK_VERSION = Oreo.
#if defined(_MIN_SDK_VERSION)
public static int MIN_SDK_VERSION = _MIN_SDK_VERSION;
#else
public static int MIN_SDK_VERSION = 1;
#endif
// Value of android:versionCode.
#if defined(_VERSION_CODE)
public static long VERSION_CODE = _VERSION_CODE;
#else
public static long VERSION_CODE = 1;
#endif
#if defined(_IS_INCREMENTAL_INSTALL)
public static boolean IS_INCREMENTAL_INSTALL = true;
#else
public static boolean IS_INCREMENTAL_INSTALL;
#endif
#if defined(_IS_FOR_TEST)
public static boolean IS_FOR_TEST = true;
#else
public static boolean IS_FOR_TEST;
#endif
#if defined(_IS_CRONET_BUILD)
public static boolean IS_CRONET_BUILD = true;
#else
public static boolean IS_CRONET_BUILD;
#endif
#if defined(_CRONET_FOR_AOSP_BUILD)
public static boolean CRONET_FOR_AOSP_BUILD = true;
#else
public static boolean CRONET_FOR_AOSP_BUILD;
#endif
#if defined(_WRITE_CLANG_PROFILING_DATA)
public static boolean WRITE_CLANG_PROFILING_DATA = true;
#else
public static boolean WRITE_CLANG_PROFILING_DATA;
#endif
#if defined(_DISABLE_DEBUG_LOGS)
public static boolean ENABLE_DEBUG_LOGS;
#else
public static boolean ENABLE_DEBUG_LOGS = true;
#endif
#if defined(_APK_ASSETS_SUFFIXED_LIST)
public static String[] APK_ASSETS_SUFFIXED_LIST = {_APK_ASSETS_SUFFIXED_LIST};
public static String APK_ASSETS_SUFFIX = QUOTE(_APK_ASSETS_SUFFIX);
#else
public static String[] APK_ASSETS_SUFFIXED_LIST = {};
public static String APK_ASSETS_SUFFIX = null;
#endif
// Enable features that are more typically available on desktop.
#if defined(_IS_DESKTOP_ANDROID)
public static boolean IS_DESKTOP_ANDROID = true;
#else
public static boolean IS_DESKTOP_ANDROID;
#endif
// Controls whether or not StrictModeContext is a no-op.
#if defined(_DISABLE_STRICT_MODE_CONTEXT)
public static boolean DISABLE_STRICT_MODE_CONTEXT = true;
#else
public static boolean DISABLE_STRICT_MODE_CONTEXT;
#endif
public static final String LOGTAG_PREFIX = QUOTE(_LOGTAG_PREFIX);
}
|