libese: Remove target specific build stanzas

Even though this target is not built by anything yet,
the dependency analysis didn't like the mismatch between
disabled targets and wildcards in libese-* deps. This change
removes target specific options until they become relevant.

Change-Id: Ieceda63410a142302cf22aa971c0ee8419aae865
Test: normal build still work for me as before
Bug: none
diff --git a/examples/Android.bp b/examples/Android.bp
index e977962..d4a6960 100644
--- a/examples/Android.bp
+++ b/examples/Android.bp
@@ -28,4 +28,13 @@
     srcs: ["ese_nxp_sample.c"],
     host_supported: false,
     shared_libs: example_shared_libraries,
+
+    target: {
+      darwin: {
+        enabled: false,
+      },
+      windows: {
+        enabled: false,
+      },
+    },
 }