diff options
author | Philip Chimento <philip@endlessm.com> | 2015-05-15 23:04:42 -0700 |
---|---|---|
committer | Philip Chimento <philip@endlessm.com> | 2015-05-21 13:22:19 -0700 |
commit | 6ff70f1a9ae70e3481411d27de7594477fa4d0d2 (patch) | |
tree | 66fc9e468023797401193d699e9f513683c596e3 /test/Makefile.am.inc | |
parent | 820994f6f86bbc35c53cddaa7d976d81d4509ff6 (diff) |
WebHelper2 for translating WebKit2 views
This adds a new Javascript module, WebHelper2. It's the WebKit2 analogue
to WebHelper. It offers a facility for calling gettext() on the contents
of DOM elements in your web page.
It accomplishes this using an extension module that's loaded into
WebKit's web process.
[endlessm/eos-sdk#291]
Diffstat (limited to 'test/Makefile.am.inc')
-rw-r--r-- | test/Makefile.am.inc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/Makefile.am.inc b/test/Makefile.am.inc index 11e4dea..7e10953 100644 --- a/test/Makefile.am.inc +++ b/test/Makefile.am.inc @@ -44,6 +44,7 @@ EXTRA_DIST += \ javascript_tests = \ test/tools/eos-application-manifest/testInit.js \ test/webhelper/testTranslate.js \ + test/webhelper/testTranslate2.js \ test/webhelper/testWebActions.js \ test/webhelper/testUpdateFontSize.js \ test/endless/testCustomContainer.js \ @@ -78,4 +79,5 @@ TESTS_ENVIRONMENT = \ export GI_TYPELIB_PATH="$(top_builddir)$${GI_TYPELIB_PATH:+:$$GI_TYPELIB_PATH}"; \ export LD_LIBRARY_PATH="$(top_builddir)/.libs$${LD_LIBRARY_PATH:+:$$LD_LIBRARY_PATH}"; \ export XDG_CONFIG_HOME=`mktemp -d $${TMPDIR:-/tmp}/sdktestconfig.XXXXXXXX`; \ + export WEBHELPER_UNINSTALLED_EXTENSION_DIR="$(top_builddir)/.libs"; \ $(NULL) |