Before this patch, when using 'tizen_espp_render' option, a build error
regarding webrtc_test_headless occurs. It is fixed now.
[Version] 0.3.217
[Issue Type] Bug fix / packaging
Change-Id: I5c242fcdddbd60e042bcbd00358c5204dd2774e3
Signed-off-by: Sangchul Lee <sc11.lee@samsung.com>
Name: capi-media-webrtc
Summary: A WebRTC library in Tizen Native API
-Version: 0.3.216
+Version: 0.3.217
Release: 0
Group: Multimedia/API
License: Apache-2.0
%description test
Testsuite of Tizen Native WebRTC API.
+%if "%{test_espp_render}" == "1"
+#not including webrtc-test-headless with this condition
+%else
%package test-headless
Summary: Testsuite of Tizen Native WebRTC API (For headless target)
Group: Multimedia/Development
%description test-headless
Testsuite of Tizen Native WebRTC API for headless target.
+%endif
%if 0%{?gcov:1}
%package gcov
%{_bindir}/webrtc_test
%license LICENSE.APLv2
+%if "%{test_espp_render}" == "1"
+#not including webrtc_test_headless with this condition
+%else
%files test-headless
%manifest %{name}-test-headless.manifest
%{_bindir}/webrtc_test_headless
%license LICENSE.APLv2
+%endif
%if 0%{?gcov:1}
%files gcov
#For headless test binary
+IF(NOT TIZEN_FEATURE_ESPP)
SET(fw_test_headless "${fw_name}-test-headless")
SET(test_name_headless "webrtc_test_headless")
ADD_EXECUTABLE(${test_name_headless} ${src_list_headless})
TARGET_LINK_LIBRARIES(${test_name_headless} capi-media-webrtc ${${fw_test_headless}_LDFLAGS})
INSTALL(TARGETS ${test_name_headless} DESTINATION bin)
-
+endif()