1package { 2 default_applicable_licenses: ["external_pandora_avatar_license"], 3} 4 5// Added automatically by a large-scale-change 6// See: http://go/android-license-faq 7license { 8 name: "external_pandora_avatar_license", 9 visibility: [":__subpackages__"], 10 license_kinds: [ 11 "SPDX-license-identifier-Apache-2.0", 12 ], 13 license_text: [ 14 "LICENSE", 15 ], 16} 17 18python_library_host { 19 name: "libavatar", 20 srcs: [ 21 "avatar/*.py", 22 "avatar/bumble_server/*.py", 23 "avatar/controllers/*.py", 24 "avatar/servers/*.py" 25 ], 26 libs: [ 27 "pandora-python", 28 "libprotobuf-python", 29 "bumble", 30 "mobly", 31 ], 32 data: [ 33 "avatar/py.typed" 34 ] 35} 36 37python_test_host { 38 name: "bumble_pandora_server", 39 main: "avatar/bumble_server/__init__.py", 40 srcs: [ 41 "avatar/bumble_server/*.py", 42 "avatar/bumble_device.py", 43 ], 44 libs: [ 45 "bumble", 46 "pandora-python", 47 ], 48 49 test_options: { 50 unit_test: false, 51 }, 52} 53