diff options
Diffstat (limited to 'python')
| -rw-r--r-- | python/Android.bp | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/python/Android.bp b/python/Android.bp new file mode 100644 index 000000000..ffd03fe89 --- /dev/null +++ b/python/Android.bp @@ -0,0 +1,24 @@ +bootstrap_go_package { + name: "soong-python", + pkgPath: "android/soong/python", + deps: [ + "blueprint", + "soong-android", + "soong-tradefed", + ], + srcs: [ + "androidmk.go", + "binary.go", + "builder.go", + "defaults.go", + "installer.go", + "library.go", + "proto.go", + "python.go", + "test.go", + ], + testSrcs: [ + "python_test.go", + ], + pluginFor: ["soong_build"], +} |