// Copyright 2025 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.chrome.browser.ui.extensions; | |
public class ExtensionsBuildflags { | |
#if defined(_ENABLE_DESKTOP_ANDROID_EXTENSIONS) | |
public static final boolean ENABLE_DESKTOP_ANDROID_EXTENSIONS = true; | |
#else | |
public static final boolean ENABLE_DESKTOP_ANDROID_EXTENSIONS = false; | |
#endif | |
} |