diff options
author | Jaewoong Jung <jungjw@google.com> | 2020-06-01 10:45:49 -0700 |
---|---|---|
committer | Jaewoong Jung <jungjw@google.com> | 2020-06-01 13:44:48 -0700 |
commit | 4b79e98a6e4f882d6bbb882e9fed626e0c490bd7 (patch) | |
tree | f1497567645e52e96f18a1cc46a1eee07e93c2a4 /python | |
parent | a91b64d3eeea5598062326c02cdd14dd8d8b704b (diff) |
Soong package structure refactoring
Give prebuilt_etc and sh_binary their own packages and split the
gigantic main Android.bp up to small, per-package ones.
Test: m nothing, TreeHugger
Bug: 156980228
Change-Id: I7b00cd344b9f16861f1ff39edf0029f016b853d0
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"], +} |