blob: d16b5b43984ab75251dfe918795092691f38d06c [file] [log] [blame]
# Copyright (c) 2022 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/build.gni")
import("//build_overrides/chip.gni")
import("//build_overrides/openthread.gni")
import("//build_overrides/ti_simplelink_sdk.gni")
import("${build_root}/config/defaults.gni")
import("${chip_root}/src/platform/device.gni")
import("${ti_simplelink_sdk_build_root}/ti_simplelink_executable.gni")
import("${ti_simplelink_sdk_build_root}/ti_simplelink_sdk.gni")
assert(current_os == "freertos")
ti_simplelink_sdk("sdk") {
include_dirs = [ "include" ]
defines = []
}
ti_sysconfig("sysconfig") {
sources = [ "chip.syscfg" ]
outputs = [
"ti_devices_config.c",
"ti_radio_config.c",
"ti_radio_config.h",
"ti_drivers_config.c",
"ti_drivers_config.h",
"ti_ble_config.c",
"ti_ble_config.h",
"ti_dmm_application_policy.c",
"ti_dmm_application_policy.h",
]
public_configs = [ ":sdk_cc13x4_26x4_dmm_config" ]
cflags = [
"-Wno-comment",
"@" + rebase_path("${target_gen_dir}/sysconfig/ti_utils_build_compiler.opt",
root_build_dir),
]
}
ti_simplelink_executable("shell_app") {
output_name = "chip-${ti_simplelink_board}-shell-example.out"
sources = [
"${chip_root}/examples/all-clusters-app/all-clusters-common/src/binding-handler.cpp",
"${chip_root}/examples/all-clusters-app/all-clusters-common/src/bridged-actions-stub.cpp",
"${chip_root}/examples/all-clusters-app/all-clusters-common/src/static-supported-modes-manager.cpp",
"main/AppTask.cpp",
"main/main.cpp",
]
deps = [
":sdk",
":sysconfig",
"${chip_root}/examples/all-clusters-app/all-clusters-common",
"${chip_root}/examples/platform/cc13x4_26x4:cc13x4_26x4-attestation-credentials",
"${chip_root}/examples/shell/shell_common:shell_common",
"${chip_root}/src/lib",
"${chip_root}/src/lib/shell:shell",
"${chip_root}/src/setup_payload",
"${chip_root}/third_party/openthread:openthread",
]
defines = []
if (custom_factory_data) {
defines += [ "CC13XX_26XX_FACTORY_DATA" ]
}
if (chip_enable_icd_server) {
defines += [ "TI_ICD_ENABLE_SERVER" ]
}
include_dirs = [
"include",
"main",
"${chip_root}/examples/all-clusters-app/all-clusters-common/include",
]
cflags = [
"-Wno-implicit-fallthrough",
"-Wno-sign-compare",
"-Wconversion",
]
output_dir = root_out_dir
}
group("cc13x4_26x4") {
deps = [ ":shell_app" ]
}
group("default") {
deps = [ ":cc13x4_26x4" ]
}