blob: cf88b812d8eb64211668aa9b1eef1c7e808d65ec [file] [log] [blame]
// Copyright 2018 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.vr;
/** Build config for VR */
public class VrBuildConfig {
#if defined(ENABLE_VR)
public static final boolean IS_VR_ENABLED = true;
#else
public static final boolean IS_VR_ENABLED = false;
#endif
}