Convert Android.mk file to Android.bp
See build/soong/README.md for more information.
Fixes: 122332862
Test: treehugger
Change-Id: I0de1acc2434881ac05a01c22e0a562f8195d51b7
diff --git a/testapps/EmbmsServiceTestApp/Android.bp b/testapps/EmbmsServiceTestApp/Android.bp
new file mode 100644
index 0000000..e4a54cb
--- /dev/null
+++ b/testapps/EmbmsServiceTestApp/Android.bp
@@ -0,0 +1,11 @@
+// Build the Sample Embms Services
+android_app {
+ name: "EmbmsTestService",
+ srcs: ["src/**/*.java"],
+ platform_apis: true,
+ certificate: "platform",
+ privileged: true,
+ // Uncomment the following line to build the EmbmsTestService
+ // into the userdebug build:
+ // LOCAL_MODULE_TAGS := debug
+}