From 4e86b5e07acd44b04f47e2dcbf3918859d66ccb0 Mon Sep 17 00:00:00 2001 From: Martin Geisler Date: Fri, 13 May 2022 16:01:35 +0200 Subject: [PATCH] =?UTF-8?q?Make=20=E2=80=98rustfmt.toml=E2=80=99=20availab?= =?UTF-8?q?le=20for=20other=20modules?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit We need the config file to ensure consistent output when running tests. Bug: 237977382 Test: manual Change-Id: Ib19d4b739305a5cbed94a40908d76dbbeec67fe5 --- scripts/Android.bp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/scripts/Android.bp b/scripts/Android.bp index 4773579e3..af71eee1f 100644 --- a/scripts/Android.bp +++ b/scripts/Android.bp @@ -193,3 +193,9 @@ sh_binary_host { name: "list_image", src: "list_image.sh", } + +filegroup { + name: "rustfmt.toml", + srcs: ["rustfmt.toml"], + visibility: ["//visibility:public"], +}