Refactor keystore.
This CL isn't nearly as big as it looks. It doesn't change keystore
functionality, it just moves all of the classes out of the former
keystore.cpp into their own .h and .cpp files.
Change-Id: I29a1ce21bff574be56128b32fc417e5a3d3c55fb
diff --git a/keystore/Android.mk b/keystore/Android.mk
index d1f45ca..f2262c1 100644
--- a/keystore/Android.mk
+++ b/keystore/Android.mk
@@ -27,7 +27,18 @@
LOCAL_MULTILIB := 32
endif
LOCAL_CFLAGS := -Wall -Wextra -Werror -Wunused
-LOCAL_SRC_FILES := keystore.cpp keyblob_utils.cpp operation.cpp auth_token_table.cpp
+LOCAL_SRC_FILES := \
+ auth_token_table.cpp \
+ blob.cpp \
+ entropy.cpp \
+ key_store_service.cpp \
+ keyblob_utils.cpp \
+ keystore.cpp \
+ keystore_main.cpp \
+ keystore_utils.cpp \
+ operation.cpp \
+ permissions.cpp \
+ user_state.cpp
LOCAL_SHARED_LIBRARIES := \
libbinder \
libcutils \