blob: fc2f5e7966a15d9541d00c1e6c31cd1ff5c12644 [file] [log] [blame]
# Copyright 2016 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.
import("//build/config/chrome_build.gni")
import("//build/config/chromecast_build.gni")
import("//build/config/gclient_args.gni")
import("//chrome/android/channel.gni")
declare_args() {
enable_gvr_services = is_android && !is_chromecast &&
(current_cpu == "arm" || current_cpu == "arm64")
enable_openvr = is_win
enable_windows_mr = is_win
# To build with OpenXR support, the OpenXR Loader needs to be pulled to
# third_party/openxr.
# TODO (crbug.com/998160): there's an issue affecting the __preload macro
# used in DirectXMathVector.inl on Windows on Arm.
enable_openxr = checkout_openxr && (is_win && current_cpu != "arm64")
# To build with Oculus support, the Oculus SDK for Windows will need to be
# installed in third_party/libovr/src. See
# third_party/libovr/README.chromium for details.
enable_oculus_vr = checkout_oculus_sdk && is_chrome_branded && is_win
}
declare_args() {
# Enable VR device support whenever VR device SDK(s) are supported.
# We enable VR on Linux even though VR features aren't usable because
# the binary size impact is small and allows many VR tests to run on Linux
enable_vr =
enable_gvr_services || enable_openvr || enable_oculus_vr ||
enable_windows_mr || enable_openxr ||
(is_desktop_linux && (current_cpu == "x64" || current_cpu == "x86"))
# Whether to include VR extras like test APKs in non-VR-specific targets
include_vr_data = false
}
declare_args() {
# Controls inclusion of code for ARCore that must be identical across configs.
# Once crbug.com/920424 is resolved, this will exactly control whether ARCore
# is supported.
# TODO(crbug.com/843374): AR should not depend on |enable_vr|.
enable_arcore = enable_vr && is_android && !is_chromecast &&
(current_cpu == "arm" || current_cpu == "arm64")
# Whether to create AR module as an asynchronous DFM.
async_ar = false
# Whether to create VR module as an asynchronous DFM.
async_vr = false
}