Fix for x86_64 build fail
[platform/upstream/connectedhomeip.git] / src / include / platform / internal / CHIPDeviceLayerInternal.h
1 /*
2  *
3  *    Copyright (c) 2020 Project CHIP Authors
4  *    Copyright (c) 2019-2020 Google LLC.
5  *    Copyright (c) 2018 Nest Labs, Inc.
6  *
7  *    Licensed under the Apache License, Version 2.0 (the "License");
8  *    you may not use this file except in compliance with the License.
9  *    You may obtain a copy of the License at
10  *
11  *        http://www.apache.org/licenses/LICENSE-2.0
12  *
13  *    Unless required by applicable law or agreed to in writing, software
14  *    distributed under the License is distributed on an "AS IS" BASIS,
15  *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  *    See the License for the specific language governing permissions and
17  *    limitations under the License.
18  */
19
20 #pragma once
21
22 #include <platform/CHIPDeviceLayer.h>
23
24 namespace chip {
25 namespace DeviceLayer {
26 namespace Internal {
27
28 extern const char * const TAG;
29
30 #if CHIP_DEVICE_CONFIG_ENABLE_TEST_DEVICE_IDENTITY
31 extern const uint64_t TestDeviceId;
32 extern const uint64_t TestFabricId;
33 extern const uint8_t TestDeviceCert[];
34 extern const uint8_t TestDeviceIntermediateCACert[];
35 extern const uint8_t TestDevicePrivateKey[];
36 extern const uint16_t TestDeviceCertLength;
37 extern const uint16_t TestDeviceIntermediateCACertLength;
38 extern const uint16_t TestDevicePrivateKeyLength;
39 #endif // CHIP_DEVICE_CONFIG_ENABLE_TEST_DEVICE_IDENTITY
40
41 } // namespace Internal
42 } // namespace DeviceLayer
43 } // namespace chip