blob: a79f39a2bb68554e6cb7863ff6c173c71226d8ed [file] [log] [blame]
Bob Badoura3d456e2021-03-01 21:25:52 -08001package {
2 default_applicable_licenses: ["external_python_jinja_license"],
3}
4
5// Added automatically by a large-scale-change
6// See: http://go/android-license-faq
7license {
8 name: "external_python_jinja_license",
9 visibility: [":__subpackages__"],
10 license_kinds: [
11 "SPDX-license-identifier-BSD",
12 ],
13 license_text: [
14 "LICENSE.rst",
15 ],
16}
17
IRIS YANGf8044192020-09-10 02:51:08 +000018python_library {
IRIS YANGf8044192020-09-10 02:51:08 +000019 name: "py-jinja",
20 host_supported: true,
21 srcs: ["src/jinja2/*.py"],
22 libs: [
23 "py-markupsafe",
24 "py-setuptools",
25 ],
26 version: {
27 py2: {
28 enabled: false,
29 },
30 py3: {
31 enabled: true,
32 },
33 },
34}