Skip to content

Commit 37920d2

Browse files
committed
Disable SKU SDK by default on Linux
Fixes brave/brave-browser#23140
1 parent e046e88 commit 37920d2

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

components/skus/common/features.cc

+8-2
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,14 @@
1111
namespace skus {
1212
namespace features {
1313

14-
const base::Feature kSkusFeature{"SkusFeature",
15-
base::FEATURE_ENABLED_BY_DEFAULT};
14+
const base::Feature kSkusFeature {
15+
"SkusFeature",
16+
#if BUILDFLAG(IS_LINUX)
17+
base::FEATURE_DISABLED_BY_DEFAULT
18+
#else
19+
base::FEATURE_ENABLED_BY_DEFAULT
20+
#endif
21+
};
1622

1723
} // namespace features
1824
} // namespace skus

0 commit comments

Comments
 (0)