diff options
Diffstat (limited to 'scripts/Android.bp')
-rw-r--r-- | scripts/Android.bp | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/scripts/Android.bp b/scripts/Android.bp index 4773579e3..814bd5753 100644 --- a/scripts/Android.bp +++ b/scripts/Android.bp @@ -84,6 +84,16 @@ python_binary_host { ], } +python_test_host { + name: "jsonmodify_test", + main: "jsonmodify_test.py", + srcs: [ + "jsonmodify_test.py", + "jsonmodify.py", + ], + test_suites: ["general-tests"], +} + python_binary_host { name: "test_config_fixer", main: "test_config_fixer.py", @@ -193,3 +203,9 @@ sh_binary_host { name: "list_image", src: "list_image.sh", } + +filegroup { + name: "rustfmt.toml", + srcs: ["rustfmt.toml"], + visibility: ["//visibility:public"], +} |