diff options
author | Srivardhan Hebbar <sri.hebbar@samsung.com> | 2014-10-27 08:00:38 -0400 |
---|---|---|
committer | Chris Michael <cp.michael@samsung.com> | 2014-10-27 08:03:33 -0400 |
commit | 664c8f7ae4e6947ab83798d1bdc35bdd59a017b8 (patch) | |
tree | 81d4e6751cd40105c9ffdbd948fcd98ab6dc98b1 /src/Makefile_Ecore.am | |
parent | a0f97ca033b5e120c63e3fd018fa78dfacd140f8 (diff) |
ecore_drm: Adding test-suite to ecore_drm.
Summary:
Adding test-suite to ecore_drm with one test case.
Signed-off-by: Srivardhan Hebbar <sri.hebbar@samsung.com>
Reviewers: devilhorns
Subscribers: cedric
Differential Revision: https://phab.enlightenment.org/D1583
Diffstat (limited to 'src/Makefile_Ecore.am')
-rw-r--r-- | src/Makefile_Ecore.am | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/src/Makefile_Ecore.am b/src/Makefile_Ecore.am index 43acee3..4249fa0 100644 --- a/src/Makefile_Ecore.am +++ b/src/Makefile_Ecore.am | |||
@@ -191,7 +191,8 @@ tests_ecore_ecore_suite_CPPFLAGS = -I$(top_builddir)/src/lib/efl \ | |||
191 | @ECORE_IMF_CFLAGS@ \ | 191 | @ECORE_IMF_CFLAGS@ \ |
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 | 196 | ||
196 | tests_ecore_ecore_suite_LDADD = \ | 197 | tests_ecore_ecore_suite_LDADD = \ |
197 | @CHECK_LIBS@ \ | 198 | @CHECK_LIBS@ \ |
@@ -203,7 +204,8 @@ tests_ecore_ecore_suite_LDADD = \ | |||
203 | @USE_ECORE_IMF_LIBS@ \ | 204 | @USE_ECORE_IMF_LIBS@ \ |
204 | @USE_ECORE_EVAS_LIBS@ \ | 205 | @USE_ECORE_EVAS_LIBS@ \ |
205 | @USE_ECORE_WAYLAND_LIBS@ \ | 206 | @USE_ECORE_WAYLAND_LIBS@ \ |
206 | @ECORE_WAYLAND_SRV_LIBS@ | 207 | @ECORE_WAYLAND_SRV_LIBS@ \ |
208 | @ECORE_DRM_LIBS@ | ||
207 | tests_ecore_ecore_suite_DEPENDENCIES = \ | 209 | tests_ecore_ecore_suite_DEPENDENCIES = \ |
208 | @USE_ECORE_INTERNAL_LIBS@ \ | 210 | @USE_ECORE_INTERNAL_LIBS@ \ |
209 | @USE_ECORE_AUDIO_INTERNAL_LIBS@ \ | 211 | @USE_ECORE_AUDIO_INTERNAL_LIBS@ \ |
@@ -212,7 +214,8 @@ tests_ecore_ecore_suite_DEPENDENCIES = \ | |||
212 | @USE_ECORE_X_INTERNAL_LIBS@ \ | 214 | @USE_ECORE_X_INTERNAL_LIBS@ \ |
213 | @USE_ECORE_IMF_INTERNAL_LIBS@ \ | 215 | @USE_ECORE_IMF_INTERNAL_LIBS@ \ |
214 | @USE_ECORE_EVAS_INTERNAL_LIBS@ \ | 216 | @USE_ECORE_EVAS_INTERNAL_LIBS@ \ |
215 | @USE_ECORE_WAYLAND_INTERNAL_LIBS@ | 217 | @USE_ECORE_WAYLAND_INTERNAL_LIBS@ \ |
218 | @USE_ECORE_DRM_INTERNAL_LIBS@ | ||
216 | 219 | ||
217 | if HAVE_ECORE_AUDIO | 220 | if HAVE_ECORE_AUDIO |
218 | tests_ecore_ecore_suite_SOURCES += tests/ecore/ecore_test_ecore_audio.c | 221 | tests_ecore_ecore_suite_SOURCES += tests/ecore/ecore_test_ecore_audio.c |
@@ -222,6 +225,10 @@ if HAVE_ECORE_WAYLAND | |||
222 | tests_ecore_ecore_suite_SOURCES += tests/ecore/ecore_test_ecore_wayland.c | 225 | tests_ecore_ecore_suite_SOURCES += tests/ecore/ecore_test_ecore_wayland.c |
223 | endif | 226 | endif |
224 | 227 | ||
228 | if HAVE_ECORE_DRM | ||
229 | tests_ecore_ecore_suite_SOURCES += tests/ecore/ecore_test_ecore_drm.c | ||
230 | endif | ||
231 | |||
225 | endif | 232 | endif |
226 | 233 | ||
227 | EXTRA_DIST += \ | 234 | EXTRA_DIST += \ |