Move the adb auth code into its own file.
Change-Id: I84cf0bd7777f0147119e7c6afc4096c2e93156a2
diff --git a/adb/Android.mk b/adb/Android.mk
index 83d168b..51318ef 100644
--- a/adb/Android.mk
+++ b/adb/Android.mk
@@ -14,8 +14,15 @@
# divergence makes this difficult to do all at once. For now, we will start
# small by moving common files into a static library. Hopefully some day we can
# get enough of adb in here that we no longer need minadb. https://b/17626262
-LIBADB_SRC_FILES := transport.c transport_usb.c
-LIBADB_C_FLAGS := -Wall -Werror -D_XOPEN_SOURCE -D_GNU_SOURCE
+LIBADB_SRC_FILES := \
+ adb_auth.c \
+ transport.c \
+ transport_usb.c \
+
+LIBADB_C_FLAGS := \
+ -Wall -Werror \
+ -D_XOPEN_SOURCE -D_GNU_SOURCE \
+ -fvisibility=hidden \
LIBADB_LINUX_SRC_FILES := fdevent.cpp
LIBADB_WINDOWS_SRC_FILES := sysdeps_win32.c