diff --git a/BUILD.gn b/BUILD.gn index 0d5fa95d21e742..d372410bd4e2ee 100644 --- a/BUILD.gn +++ b/BUILD.gn @@ -199,6 +199,10 @@ if (current_toolchain != "${dir_pw_toolchain}/dummy:dummy") { enable_linux_all_clusters_app_build = enable_default_builds && (host_os == "linux" || host_os == "mac") + # Build the Linux tv app example. + enable_linux_tv_app_build = + enable_default_builds && (host_os == "linux" || host_os == "mac") + # Build the Linux bridge app example. enable_linux_bridge_app_build = enable_default_builds && (host_os == "linux" || host_os == "mac") @@ -299,6 +303,12 @@ if (current_toolchain != "${dir_pw_toolchain}/dummy:dummy") { } } + if (enable_linux_tv_app_build) { + group("linux_tv_app") { + deps = [ "${chip_root}/examples/tv-app/linux(${standalone_toolchain})" ] + } + } + if (enable_linux_bridge_app_build) { group("linux_bridge_app") { deps = @@ -375,6 +385,9 @@ if (current_toolchain != "${dir_pw_toolchain}/dummy:dummy") { if (enable_linux_all_clusters_app_build) { deps += [ ":linux_all_clusters_app" ] } + if (enable_linux_tv_app_build) { + deps += [ ":linux_tv_app" ] + } if (enable_linux_bridge_app_build) { deps += [ ":linux_bridge_app" ] }