summaryrefslogtreecommitdiffstats
path: root/cmds/keystore/Android.mk
diff options
context:
space:
mode:
authorKenny Root <kroot@google.com>2012-02-15 15:04:01 -0800
committerKenny Root <kroot@google.com>2012-02-15 15:55:21 -0800
commita87de87dcd36d9c7696587365aa3d1545e33c01b (patch)
treeff01477a7761363ff70eee6506138284a0546950 /cmds/keystore/Android.mk
parent5b1b57f0f540e8efe5bebdc219738d40ebfce5b9 (diff)
downloadframeworks_native-a87de87dcd36d9c7696587365aa3d1545e33c01b.zip
frameworks_native-a87de87dcd36d9c7696587365aa3d1545e33c01b.tar.gz
frameworks_native-a87de87dcd36d9c7696587365aa3d1545e33c01b.tar.bz2
Move keystore to system/security repo
Move keystore to system/security at revision a91203b08350b2fc7efda5b1eab39e7541476b3a Change-Id: I7dbd625b864e9c63489b08e9fd28dfb22da81072
Diffstat (limited to 'cmds/keystore/Android.mk')
-rw-r--r--cmds/keystore/Android.mk32
1 files changed, 0 insertions, 32 deletions
diff --git a/cmds/keystore/Android.mk b/cmds/keystore/Android.mk
deleted file mode 100644
index 5a9b979..0000000
--- a/cmds/keystore/Android.mk
+++ /dev/null
@@ -1,32 +0,0 @@
-#
-# Copyright (C) 2009 The Android Open Source Project
-#
-# Licensed under the Apache License, Version 2.0 (the "License");
-# you may not use this file except in compliance with the License.
-# You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
-#
-
-LOCAL_PATH:= $(call my-dir)
-
-include $(CLEAR_VARS)
-LOCAL_SRC_FILES := keystore.cpp
-LOCAL_C_INCLUDES := external/openssl/include
-LOCAL_SHARED_LIBRARIES := libcutils libcrypto
-LOCAL_MODULE:= keystore
-include $(BUILD_EXECUTABLE)
-
-include $(CLEAR_VARS)
-LOCAL_SRC_FILES := keystore_cli.cpp
-LOCAL_C_INCLUDES := external/openssl/include
-LOCAL_SHARED_LIBRARIES := libcutils libcrypto
-LOCAL_MODULE:= keystore_cli
-LOCAL_MODULE_TAGS := debug
-include $(BUILD_EXECUTABLE)