diff options
author | Cedric BAIL <cedric.bail@samsung.com> | 2013-02-19 18:55:37 +0900 |
---|---|---|
committer | Cedric BAIL <cedric.bail@samsung.com> | 2013-03-12 15:58:42 +0900 |
commit | 15aae2c0a4b9f59199395884439626de39e80e62 (patch) | |
tree | 7fa3d76144798395a2e7e664b57e47d11a7ea90e /src/Makefile_Edje.am | |
parent | 8b55c24fe8a63e23d119fd948e6c0c30d8f404d5 (diff) | |
download | efl-15aae2c0a4b9f59199395884439626de39e80e62.tar.gz |
edje: reduce memory usage of Edje signal callbacks and automates.
This patch try to share signal callbacks and automate accross all Edje
object. It does use an Eina_Hash on the callback description (signal,
source, func). There is no need to check it against Edje file or group
only the callbacks matter.
Diffstat (limited to 'src/Makefile_Edje.am')
-rw-r--r-- | src/Makefile_Edje.am | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Makefile_Edje.am b/src/Makefile_Edje.am index 17b23c7ab5..4a4d46c2bc 100644 --- a/src/Makefile_Edje.am +++ b/src/Makefile_Edje.am @@ -46,7 +46,8 @@ lib/edje/edje_smart.c \ lib/edje/edje_text.c \ lib/edje/edje_textblock_styles.c \ lib/edje/edje_util.c \ -lib/edje/edje_var.c +lib/edje/edje_var.c \ +lib/edje/edje_signal.c lib_edje_libedje_la_CPPFLAGS = $(EDJE_COMMON_CPPFLAGS) lib_edje_libedje_la_LIBADD = @EDJE_LIBS@ |