diff options
author | Ken VanDine <ken.vandine@canonical.com> | 2012-01-24 12:19:38 -0500 |
---|---|---|
committer | Ken VanDine <ken.vandine@canonical.com> | 2012-01-24 12:19:38 -0500 |
commit | 2d9e6ffd800cd27e0524c49c1e791ba83bfee165 (patch) | |
tree | 815a34ea07984d493f770606887c88a6319a607a /tests/Makefile.am | |
parent | 30ab1ed064f598d6b33289f7bd97b6ac97029e82 (diff) | |
parent | c2596f714bf499ed87bef58d68216054b63ee9c3 (diff) | |
download | libayatana-indicator-2d9e6ffd800cd27e0524c49c1e791ba83bfee165.tar.gz libayatana-indicator-2d9e6ffd800cd27e0524c49c1e791ba83bfee165.tar.bz2 libayatana-indicator-2d9e6ffd800cd27e0524c49c1e791ba83bfee165.zip |
* New upstream release.
* Support hiding and showing indicators
* Track the parent object in the entry
* Adding activate function to include Window ID
* debian/control: Bumping ABI version of lib
Diffstat (limited to 'tests/Makefile.am')
-rw-r--r-- | tests/Makefile.am | 47 |
1 files changed, 45 insertions, 2 deletions
diff --git a/tests/Makefile.am b/tests/Makefile.am index f11a9d1..9319087 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -14,7 +14,9 @@ lib_LTLIBRARIES = \ libdummy-indicator-blank.la \ libdummy-indicator-null.la \ libdummy-indicator-signaler.la \ - libdummy-indicator-simple.la + libdummy-indicator-simple.la \ + libdummy-indicator-visible.la \ + libdummy-indicator-entry-func.la DBUS_RUNNER=dbus-test-runner --dbus-config /usr/share/dbus-test-runner/session.conf XVFB_RUN=". $(srcdir)/run-xvfb.sh" @@ -162,6 +164,47 @@ libdummy_indicator_simple_la_LDFLAGS = \ -avoid-version ############################# +# Dummy Indicator Entry Func +############################# + +libdummy_indicator_entry_func_la_SOURCES = \ + dummy-indicator-entry-func.c \ + dummy-indicator-entry-func.h + +libdummy_indicator_entry_func_la_CFLAGS = \ + -Wall -Werror \ + $(LIBINDICATOR_CFLAGS) -I$(top_srcdir) + +libdummy_indicator_entry_func_la_LIBADD = \ + $(LIBINDICATOR_LIBS) \ + -L$(top_builddir)/libindicator/.libs \ + $(INDICATOR_LIB) + +libdummy_indicator_entry_func_la_LDFLAGS = \ + -module \ + -avoid-version + +############################# +# Dummy Indicator Visible +############################# + +libdummy_indicator_visible_la_SOURCES = \ + dummy-indicator-visible.c + +libdummy_indicator_visible_la_CFLAGS = \ + -Wall -Werror \ + $(LIBINDICATOR_CFLAGS) -I$(top_srcdir) + +libdummy_indicator_visible_la_LIBADD = \ + $(LIBINDICATOR_LIBS) \ + -L$(top_builddir)/libindicator/.libs \ + $(INDICATOR_LIB) + +libdummy_indicator_visible_la_LDFLAGS = \ + -module \ + -avoid-version + +############################# # Service Shutdown Timeout ############################# @@ -412,7 +455,7 @@ DISTCLEANFILES += service-manager-connect-nostart-tester XML_REPORT = loader-check-results.xml HTML_REPORT = loader-check-results.html -loader-tester: test-loader libdummy-indicator-null.la libdummy-indicator-simple.la Makefile +loader-tester: test-loader libdummy-indicator-null.la libdummy-indicator-simple.la libdummy-indicator-entry-func.la Makefile @echo "#!/bin/bash" > loader-tester @echo $(XVFB_RUN) >> $@ @echo gtester -k --verbose -o=$(XML_REPORT) ./test-loader >> loader-tester |