diff options
author | vivek <vivek.ellur@samsung.com> | 2014-10-29 08:14:26 -0400 |
---|---|---|
committer | Chris Michael <cp.michael@samsung.com> | 2014-10-29 08:14:26 -0400 |
commit | f59ddff4e2bd23735ce43343199abd686483c4e8 (patch) | |
tree | e9c21701ac2ad0d52426acb20795222148bc2a71 /src/Makefile_Ecore.am | |
parent | dfdc31cae79baa95b0b774935c0d087e1f05fb2a (diff) |
ecore-fb: Adding test suite for ecore_fb
Summary:
Added test suite for ecore_fb with test for ecore_fb_init
w
Signed-off-by: vivek <vivek.ellur@samsung.com>
Reviewers: devilhorns
Reviewed By: devilhorns
Subscribers: cedric
Differential Revision: https://phab.enlightenment.org/D1594
Diffstat (limited to 'src/Makefile_Ecore.am')
-rw-r--r-- | src/Makefile_Ecore.am | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/src/Makefile_Ecore.am b/src/Makefile_Ecore.am index 4249fa0..9eac67b 100644 --- a/src/Makefile_Ecore.am +++ b/src/Makefile_Ecore.am | |||
@@ -192,7 +192,8 @@ tests_ecore_ecore_suite_CPPFLAGS = -I$(top_builddir)/src/lib/efl \ | |||
192 | @ECORE_EVAS_CFLAGS@ \ | 192 | @ECORE_EVAS_CFLAGS@ \ |
193 | @ECORE_WAYLAND_CFLAGS@ \ | 193 | @ECORE_WAYLAND_CFLAGS@ \ |
194 | @ECORE_WAYLAND_SRV_CFLAGS@ \ | 194 | @ECORE_WAYLAND_SRV_CFLAGS@ \ |
195 | @ECORE_DRM_CFLAGS@ | 195 | @ECORE_DRM_CFLAGS@ \ |
196 | @ECORE_FB_CFLAGS@ | ||
196 | 197 | ||
197 | tests_ecore_ecore_suite_LDADD = \ | 198 | tests_ecore_ecore_suite_LDADD = \ |
198 | @CHECK_LIBS@ \ | 199 | @CHECK_LIBS@ \ |
@@ -204,8 +205,10 @@ tests_ecore_ecore_suite_LDADD = \ | |||
204 | @USE_ECORE_IMF_LIBS@ \ | 205 | @USE_ECORE_IMF_LIBS@ \ |
205 | @USE_ECORE_EVAS_LIBS@ \ | 206 | @USE_ECORE_EVAS_LIBS@ \ |
206 | @USE_ECORE_WAYLAND_LIBS@ \ | 207 | @USE_ECORE_WAYLAND_LIBS@ \ |
208 | @USE_ECORE_FB_LIBS@ \ | ||
207 | @ECORE_WAYLAND_SRV_LIBS@ \ | 209 | @ECORE_WAYLAND_SRV_LIBS@ \ |
208 | @ECORE_DRM_LIBS@ | 210 | @ECORE_DRM_LIBS@ |
211 | |||
209 | tests_ecore_ecore_suite_DEPENDENCIES = \ | 212 | tests_ecore_ecore_suite_DEPENDENCIES = \ |
210 | @USE_ECORE_INTERNAL_LIBS@ \ | 213 | @USE_ECORE_INTERNAL_LIBS@ \ |
211 | @USE_ECORE_AUDIO_INTERNAL_LIBS@ \ | 214 | @USE_ECORE_AUDIO_INTERNAL_LIBS@ \ |
@@ -215,7 +218,8 @@ tests_ecore_ecore_suite_DEPENDENCIES = \ | |||
215 | @USE_ECORE_IMF_INTERNAL_LIBS@ \ | 218 | @USE_ECORE_IMF_INTERNAL_LIBS@ \ |
216 | @USE_ECORE_EVAS_INTERNAL_LIBS@ \ | 219 | @USE_ECORE_EVAS_INTERNAL_LIBS@ \ |
217 | @USE_ECORE_WAYLAND_INTERNAL_LIBS@ \ | 220 | @USE_ECORE_WAYLAND_INTERNAL_LIBS@ \ |
218 | @USE_ECORE_DRM_INTERNAL_LIBS@ | 221 | @USE_ECORE_DRM_INTERNAL_LIBS@ \ |
222 | @USE_ECORE_FB_INTERNAL_LIBS@ | ||
219 | 223 | ||
220 | if HAVE_ECORE_AUDIO | 224 | if HAVE_ECORE_AUDIO |
221 | tests_ecore_ecore_suite_SOURCES += tests/ecore/ecore_test_ecore_audio.c | 225 | tests_ecore_ecore_suite_SOURCES += tests/ecore/ecore_test_ecore_audio.c |
@@ -229,6 +233,10 @@ if HAVE_ECORE_DRM | |||
229 | tests_ecore_ecore_suite_SOURCES += tests/ecore/ecore_test_ecore_drm.c | 233 | tests_ecore_ecore_suite_SOURCES += tests/ecore/ecore_test_ecore_drm.c |
230 | endif | 234 | endif |
231 | 235 | ||
236 | if HAVE_ECORE_FB | ||
237 | tests_ecore_ecore_suite_SOURCES += tests/ecore/ecore_test_ecore_fb.c | ||
238 | endif | ||
239 | |||
232 | endif | 240 | endif |
233 | 241 | ||
234 | EXTRA_DIST += \ | 242 | EXTRA_DIST += \ |