blob: 9cb3d08f7dddc0209088da2bb1390c2e0d9b8287 [file] [log] [blame]
Bob Badourb74aa592022-08-18 10:45:13 -07001package {
2 default_applicable_licenses: ["external_python_bumble_license"],
3}
4
5// Added automatically by a large-scale-change
6// See: http://go/android-license-faq
7license {
8 name: "external_python_bumble_license",
9 visibility: [":__subpackages__"],
10 license_kinds: [
11 "SPDX-license-identifier-Apache-2.0",
12 ],
13 license_text: [
14 "LICENSE",
15 ],
16}
17
David Duarte0885abe2022-08-10 18:11:24 +000018python_library_host {
19 name: "bumble",
20 srcs: [
21 "bumble/*.py",
uael74376c12023-08-02 18:11:13 +000022 "bumble/drivers/*.py",
David Duarte0885abe2022-08-10 18:11:24 +000023 "bumble/profiles/*.py",
24 "bumble/transport/*.py",
25 ],
uaelcca9c092023-02-23 17:08:26 +000026 libs: [
27 "pyee",
28 ]
David Duarte0885abe2022-08-10 18:11:24 +000029}
uael81d7bc02023-05-23 04:52:41 +000030
31python_library_host {
32 name: "bumble-pandora",
33 srcs: [
34 "bumble/pandora/*.py",
35 ],
36 libs: [
37 "bumble",
38 "pandora-python",
39 "libprotobuf-python",
40 ],
41 data: [
42 "bumble/pandora/py.typed"
43 ]
44}
45
46python_test_host {
47 name: "bumble_pandora_server",
48 main: "apps/pandora_server.py",
49 srcs: [
50 "apps/pandora_server.py",
51 ],
52 libs: [
53 "bumble-pandora",
54 "pandora-python",
55 ],
56
57 test_options: {
58 unit_test: false,
59 },
60
61 test_suites: [
62 "general-tests"
63 ]
64}