Add preupload check for .bp file format
Fixes the existing format issues with Android.bp.
Test: modified Android.bp file and tried to upload
Change-Id: I679e64eef9a8d476873cb142c7c782077a525244
diff --git a/Android.bp b/Android.bp
index bc4e560..0b30df3 100644
--- a/Android.bp
+++ b/Android.bp
@@ -105,7 +105,7 @@
"-DVIXL_INCLUDE_SIMULATOR_AARCH64",
"-DVIXL_INCLUDE_TARGET_A64",
],
- }
+ },
},
}
@@ -141,7 +141,7 @@
target: {
android: {
lto: {
- thin: true,
+ thin: true,
},
},
},
@@ -164,7 +164,11 @@
cc_test_host {
name: "vixl-test-runner",
gtest: false,
- defaults: ["vixl-debug", "vixl-arm", "vixl-arm64"],
+ defaults: [
+ "vixl-debug",
+ "vixl-arm",
+ "vixl-arm64",
+ ],
local_include_dirs: ["test"],
srcs: [
"test/*.cc",