media: Fix Android.bp format
As PREUPLOAD.cfg applies to the top level of the project (ignored below)
we apply this to everything in system/media.
$ find . -name Android.bp | xargs ../../prebuilts/build-tools/linux-x86/bin/bpfmt -s -w
Note that bpfmt has a -s sort option.
Test: treehugger
Test: repo upload --dry-run .
Bug: 328311629
Change-Id: I35357c80b863c66e02e36310cf0de6ff0db92ab5
diff --git a/alsa_utils/Android.bp b/alsa_utils/Android.bp
index 7c3a8ce..9d96c42 100644
--- a/alsa_utils/Android.bp
+++ b/alsa_utils/Android.bp
@@ -26,8 +26,8 @@
srcs: [
"alsa_device_profile.c",
"alsa_device_proxy.c",
- "alsa_logging.c",
"alsa_format.c",
+ "alsa_logging.c",
],
export_include_dirs: ["include"],
header_libs: [
@@ -37,13 +37,13 @@
"libaudio_system_headers",
],
shared_libs: [
- "liblog",
- "libcutils",
"libaudioutils",
+ "libcutils",
+ "liblog",
],
cflags: [
- "-Werror",
"-Wall",
+ "-Werror",
"-Wno-unused-parameter",
],
}