Remove ttf-noto-emoji recipe
[AGL/meta-agl-demo.git] / recipes-devtools / gn / gn.inc
1 SUMMARY = "Meta-build system from Google"
2 LICENSE = "BSD"
3 LIC_FILES_CHKSUM = "file://LICENSE;md5=0fca02217a5d49a14dfe2d11837bb34d"
4
5 DEPENDS = "python-native ninja-native"
6
7 SRC_URI = "http://gsdview.appspot.com/chromium-browser-official/chromium-${PV}.tar.xz"
8
9 S ?= "${WORKDIR}/chromium-${PV}"
10
11 do_compile () {
12   cd ${S}/tools/gn
13   ./bootstrap/bootstrap.py -s
14 }
15
16 do_install () {
17   install -d ${D}${bindir}
18   install -m 0755 out/Release/gn ${D}${bindir}/gn
19 }
20
21 BBCLASSEXTEND = "native nativesdk"