You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
412 B

package {
default_applicable_licenses: ["Android-Apache-2.0"],
}
python_library_host {
name: "fetcher-lib",
srcs: [
"fetcher_lib.py"
],
pkg_path: "treble/fetcher",
libs: [
"py-google-api-python-client",
"py-oauth2client",
],
}
python_binary_host {
name: "fetcher",
main: "fetcher.py",
srcs: [
"fetcher.py",
],
libs: [
"fetcher-lib",
],
}