| # Copyright (c) 2021 Project CHIP Authors |
| # |
| # Licensed under the Apache License, Version 2.0 (the "License"); |
| # you may not use this file except in compliance with the License. |
| # You may obtain a copy of the License at |
| # |
| # http://www.apache.org/licenses/LICENSE-2.0 |
| # |
| # Unless required by applicable law or agreed to in writing, software |
| # distributed under the License is distributed on an "AS IS" BASIS, |
| # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| # See the License for the specific language governing permissions and |
| # limitations under the License. |
| |
| import("//build_overrides/chip.gni") |
| |
| import("//src/platform/device.gni") |
| |
| assert(chip_device_platform == "realtek_bee") |
| |
| static_library("BEE") { |
| sources = [ |
| "//src/platform/FreeRTOS/SystemTimeSupport.cpp", |
| "//src/platform/SingletonConfigurationManager.cpp", |
| "BLEManagerImpl.cpp", |
| "BLEManagerImpl.h", |
| "BeeConfig.cpp", |
| "BeeConfig.h", |
| "BlePlatformConfig.h", |
| "CHIPDevicePlatformConfig.h", |
| "CHIPDevicePlatformEvent.h", |
| "CHIPPlatformConfig.h", |
| "ConfigurationManagerImpl.cpp", |
| "ConfigurationManagerImpl.h", |
| "ConnectivityManagerImpl.cpp", |
| "ConnectivityManagerImpl.h", |
| "DiagnosticDataProviderImpl.cpp", |
| "DiagnosticDataProviderImpl.h", |
| "FactoryDataDecoder.cpp", |
| "FactoryDataDecoder.h", |
| "FactoryDataProvider.cpp", |
| "FactoryDataProvider.h", |
| "InetPlatformConfig.h", |
| "KeyValueStoreManagerImpl.cpp", |
| "KeyValueStoreManagerImpl.h", |
| "OTAImageProcessorImpl.cpp", |
| "OTAImageProcessorImpl.h", |
| "PlatformManagerImpl.cpp", |
| "PlatformManagerImpl.h", |
| "SystemPlatformConfig.h", |
| ] |
| |
| deps = [ |
| "${chip_root}/src/app:app_config", |
| "${chip_root}/src/app/common:ids", |
| "${chip_root}/src/lib/dnssd:platform_header", |
| "${chip_root}/src/platform/logging:headers", |
| "${chip_root}/src/setup_payload", |
| ] |
| |
| public = [ "${chip_root}/src/credentials/DeviceAttestationCredsProvider.h" ] |
| |
| public_deps = [ "${chip_root}/src/platform:platform_base" ] |
| |
| public_configs = [] |
| |
| if (chip_enable_openthread) { |
| sources += [ |
| "//src/platform/OpenThread/GenericNetworkCommissioningThreadDriver.cpp", |
| "//src/platform/OpenThread/GenericNetworkCommissioningThreadDriver.h", |
| "//src/platform/OpenThread/OpenThreadDnssdImpl.cpp", |
| "//src/platform/OpenThread/OpenThreadDnssdImpl.h", |
| "//src/platform/OpenThread/OpenThreadUtils.cpp", |
| "ThreadStackManagerImpl.cpp", |
| "ThreadStackManagerImpl.h", |
| ] |
| |
| if (chip_mdns == "platform") { |
| sources += [ "//src/platform/OpenThread/DnssdImpl.cpp" ] |
| deps += [ "//src/lib/dnssd:platform_header" ] |
| } |
| } |
| } |
| |
| source_set("logging") { |
| deps = [ |
| "${chip_root}/src/platform:platform_base", |
| "${chip_root}/src/platform/logging:headers", |
| ] |
| sources = [ "Logging.cpp" ] |
| } |