Add IS_TIZEN_DA to fix build break in standard build. 16/305716/1
authorSun-woo Nam <sunny.nam@samsung.com>
Wed, 7 Feb 2024 00:30:33 +0000 (00:30 +0000)
committerSun-woo Nam <sunny.nam@samsung.com>
Wed, 7 Feb 2024 00:30:33 +0000 (00:30 +0000)
This patch fixes build break caused by the patch below.
https://review.tizen.org/gerrit/#/c/305076/

Change-Id: I278839c1027c91e3af31a35e6988b63716943891
Signed-off-by: Sun-woo Nam <sunny.nam@samsung.com>
build/build_config.h

index 3f5f501..c368f65 100644 (file)
 #define BUILDFLAG_INTERNAL_IS_TIZEN_TV() (0)
 #endif
 
+#if defined(OS_TIZEN_DA_PRODUCT)
+#define BUILDFLAG_INTERNAL_IS_TIZEN_DA() (1)
+#else
+#define BUILDFLAG_INTERNAL_IS_TIZEN_DA() (0)
+#endif
+
 #if defined(USE_EFL)
 #define BUILDFLAG_INTERNAL_IS_EFL() (1)
 #else