xref: /aosp_15_r20/external/cronet/crypto/features.cc (revision 6777b5387eb2ff775bb5750e3f5d96f37fb7352b)
1 // Copyright 2024 The Chromium Authors
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4 
5 #include "crypto/features.h"
6 
7 #include "base/feature_list.h"
8 #include "build/build_config.h"
9 
10 namespace crypto {
11 
12 #if BUILDFLAG(IS_MAC)
13 // Enabled in M124. Remove in or after M127.
14 BASE_FEATURE(kEnableMacUnexportableKeys,
15              "EnableMacUnexportableKeys",
16              base::FEATURE_ENABLED_BY_DEFAULT);
17 #endif  // BUILDFLAG(IS_MAC)
18 
19 }  // namespace crypto
20