// Copyright 2017 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. #include "sandbox/policy/features.h" #include "build/build_config.h" #include "build/chromeos_buildflags.h" namespace sandbox { namespace policy { namespace features { #if defined(TOOLKIT_QT) || !defined(OS_MAC) // Enables network service sandbox. // (Only causes an effect when feature kNetworkService is enabled.) const base::Feature kNetworkServiceSandbox{"NetworkServiceSandbox", base::FEATURE_DISABLED_BY_DEFAULT}; #endif // !defined(OS_MAC) #if defined(OS_WIN) // Emergency "off switch" for new Windows sandbox security mitigation, // sandbox::MITIGATION_EXTENSION_POINT_DISABLE. const base::Feature kWinSboxDisableExtensionPoints{ "WinSboxDisableExtensionPoint", base::FEATURE_ENABLED_BY_DEFAULT}; // Enables GPU AppContainer sandbox on Windows. const base::Feature kGpuAppContainer{"GpuAppContainer", base::FEATURE_DISABLED_BY_DEFAULT}; // Enables GPU Low Privilege AppContainer when combined with kGpuAppContainer. const base::Feature kGpuLPAC{"GpuLPAC", base::FEATURE_ENABLED_BY_DEFAULT}; #endif // defined(OS_WIN) #if !defined(OS_ANDROID) // Controls whether the isolated XR service is sandboxed. const base::Feature kXRSandbox{"XRSandbox", base::FEATURE_ENABLED_BY_DEFAULT}; #endif // !defined(OS_ANDROID) #if BUILDFLAG(IS_CHROMEOS_ASH) // Controls whether the Spectre variant 2 mitigation is enabled. We use a USE // flag on some Chrome OS boards to disable the mitigation by disabling this // feature in exchange for system performance. const base::Feature kSpectreVariant2Mitigation{ "SpectreVariant2Mitigation", base::FEATURE_ENABLED_BY_DEFAULT}; // An override for the Spectre variant 2 default behavior. Security sensitive // users can enable this feature to ensure that the mitigation is always // enabled. const base::Feature kForceSpectreVariant2Mitigation{ "ForceSpectreVariant2Mitigation", base::FEATURE_DISABLED_BY_DEFAULT}; #endif // BUILDFLAG(IS_CHROMEOS_ASH) } // namespace features } // namespace policy } // namespace sandbox