summaryrefslogtreecommitdiffstats
path: root/recipes-wam/wam/wam.inc
diff options
context:
space:
mode:
authorRoger Zanoni <rzanoni@igalia.com>2023-06-23 14:06:20 +0200
committerRoger Zanoni <rzanoni@igalia.com>2023-07-18 15:28:52 +0200
commit1ad25b9039ef910dc444e50fd43245c31d9bcae9 (patch)
treee29b75b0abcaddd0f16a7f238be7873fe0530b56 /recipes-wam/wam/wam.inc
parent7a7c0e1f4c62ab976dfd2a58d33ed93d62c587d3 (diff)
[wam][cef] Make it possible to use cef as a backend
This changes enables switching between the chromium and cef backends on wam by passing the agl-cef feature to the agl-setup script. Bug-AGL: SPEC-3872 Signed-off-by: Roger Zanoni <rzanoni@igalia.com> Change-Id: Ib5b4b139789ec8303fef0a210a7e8f2f724d0c00
Diffstat (limited to 'recipes-wam/wam/wam.inc')
-rw-r--r--recipes-wam/wam/wam.inc12
1 files changed, 12 insertions, 0 deletions
diff --git a/recipes-wam/wam/wam.inc b/recipes-wam/wam/wam.inc
new file mode 100644
index 00000000..f78fcfe5
--- /dev/null
+++ b/recipes-wam/wam/wam.inc
@@ -0,0 +1,12 @@
+DEPENDS += " chromium "
+
+EXTRA_OECMAKE = "\
+ -DCMAKE_BUILD_TYPE=Release \
+ -DCMAKE_INSTALL_PREFIX=${prefix} \
+ -DPLATFORM_NAME=${@'${DISTRO}'.upper().replace('-', '_')} \
+ -DCHROMIUM_SRC_DIR=${STAGING_INCDIR}/chromium"
+
+do_install:append() {
+ install -v -D -m 644 ${WORKDIR}/WebAppMgr.env ${D}${sysconfdir}/default/WebAppMgr.env
+ sed -i -e 's#@WAM_EXE_DIR@#${bindir}#g' ${D}${systemd_system_unitdir}/WebAppMgr.service
+}