diff options
author | subhransu mohanty <sub.mohanty@samsung.com> | 2017-11-07 11:22:09 +0900 |
---|---|---|
committer | Carsten Haitzler (Rasterman) <raster@rasterman.com> | 2017-11-07 11:34:53 +0900 |
commit | b038d7df25f9cecaa4f0d8c1c7355e4852e5348a (patch) | |
tree | 595da7d0114056e147d4a40fedc72d5b71b3927a /src/Makefile_Evas.am | |
parent | a75b3dcdfbe0760972c8b4d55a90dc6250bd1e45 (diff) | |
download | efl-b038d7df25f9cecaa4f0d8c1c7355e4852e5348a.tar.gz |
Remove evas internal dependency from the evas_font module
Summary:
dev branch : devs/subhransu/font
The Final goal is to move the evas_font module to ector so that both ector and evas can reuse the code.
make the api simple so that sam eapi can be used by evas_textblock and ector text.
This is the 1st stage to achive that gola, first remove the evas internal dependancy as much as possible before moving to ector library.
Reviewers: jpeg, raster, herdsman, cedric, id213sin
Subscribers: cedric, jpeg
Differential Revision: https://phab.enlightenment.org/D5419
Diffstat (limited to 'src/Makefile_Evas.am')
-rw-r--r-- | src/Makefile_Evas.am | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/Makefile_Evas.am b/src/Makefile_Evas.am index 8b82e1aaed..d80e1c2015 100644 --- a/src/Makefile_Evas.am +++ b/src/Makefile_Evas.am @@ -493,7 +493,8 @@ lib/evas/common/language/evas_bidi_utils.h \ lib/evas/common/language/evas_language_utils.h \ lib/evas/common/language/evas_script_table.h \ lib/evas/common/evas_text_utils.h \ -lib/evas/common/evas_font_ot.h +lib/evas/common/evas_font_ot.h \ +lib/evas/common/evas_font_draw.h lib_evas_libevas_la_CPPFLAGS = -I$(top_builddir)/src/lib/efl \ -I$(top_srcdir)/src/lib/evas/canvas \ @@ -1608,7 +1609,7 @@ if BUILD_VG_LOADER_SVG if EVAS_STATIC_BUILD_VG_SVG lib_evas_libevas_la_SOURCES += modules/evas/vg_loaders/svg/evas_vg_load_svg.c \ static_libs/vg_common/vg_common.c \ -static_libs/vg_common/vg_common.h +static_libs/vg_common/vg_common.h lib_evas_libevas_la_CPPFLAGS += -I$(top_srcdir)/src/static_libs/vg_common \ @evas_vg_loader_svg_cflags@ lib_evas_libevas_la_LIBADD += @evas_vg_loader_svg_libs@ |