Kenny Root | a91203b | 2012-02-15 15:00:46 -0800 | [diff] [blame] | 1 | # |
| 2 | # Copyright (C) 2009 The Android Open Source Project |
| 3 | # |
| 4 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | # you may not use this file except in compliance with the License. |
| 6 | # You may obtain a copy of the License at |
| 7 | # |
| 8 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | # |
| 10 | # Unless required by applicable law or agreed to in writing, software |
| 11 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | # See the License for the specific language governing permissions and |
| 14 | # limitations under the License. |
| 15 | # |
| 16 | |
| 17 | LOCAL_PATH := $(call my-dir) |
| 18 | |
| 19 | include $(CLEAR_VARS) |
Shawn Willden | bd4bb2f | 2014-08-29 16:31:51 -0600 | [diff] [blame] | 20 | ifeq ($(USE_32_BIT_KEYSTORE), true) |
| 21 | LOCAL_MULTILIB := 32 |
| 22 | endif |
Chad Brubaker | 61c5884 | 2015-03-16 11:05:51 -0700 | [diff] [blame] | 23 | LOCAL_CFLAGS := -Wall -Wextra -Werror -Wunused |
Chad Brubaker | d80c7b4 | 2015-03-31 11:04:28 -0700 | [diff] [blame] | 24 | LOCAL_SRC_FILES := keystore.cpp keyblob_utils.cpp operation.cpp auth_token_table.cpp |
Kenny Root | 17208e0 | 2013-09-04 13:56:03 -0700 | [diff] [blame] | 25 | LOCAL_SHARED_LIBRARIES := \ |
| 26 | libbinder \ |
| 27 | libcutils \ |
| 28 | libcrypto \ |
| 29 | libhardware \ |
| 30 | libkeystore_binder \ |
| 31 | liblog \ |
| 32 | libsoftkeymaster \ |
Riley Spahn | eaabae9 | 2014-06-30 12:39:52 -0700 | [diff] [blame] | 33 | libutils \ |
Chad Brubaker | 919cb2a | 2015-02-05 21:58:25 -0800 | [diff] [blame] | 34 | libselinux \ |
Chad Brubaker | d80c7b4 | 2015-03-31 11:04:28 -0700 | [diff] [blame] | 35 | libsoftkeymasterdevice \ |
Shawn Willden | 9221bff | 2015-06-18 18:23:54 -0600 | [diff] [blame] | 36 | libkeymaster_messages \ |
| 37 | libkeymaster1 |
Kenny Root | a91203b | 2012-02-15 15:00:46 -0800 | [diff] [blame] | 38 | LOCAL_MODULE := keystore |
Kenny Root | 70e3a86 | 2012-02-15 17:20:23 -0800 | [diff] [blame] | 39 | LOCAL_MODULE_TAGS := optional |
Tom Cherry | ad29971 | 2015-08-14 13:06:37 -0700 | [diff] [blame] | 40 | LOCAL_INIT_RC := keystore.rc |
Chad Brubaker | 919cb2a | 2015-02-05 21:58:25 -0800 | [diff] [blame] | 41 | LOCAL_C_INCLUES := system/keymaster/ |
Kenny Root | 6a9cafc | 2012-11-16 12:53:42 -0800 | [diff] [blame] | 42 | LOCAL_ADDITIONAL_DEPENDENCIES := $(LOCAL_PATH)/Android.mk |
Kenny Root | a91203b | 2012-02-15 15:00:46 -0800 | [diff] [blame] | 43 | include $(BUILD_EXECUTABLE) |
| 44 | |
| 45 | include $(CLEAR_VARS) |
Shawn Willden | bd4bb2f | 2014-08-29 16:31:51 -0600 | [diff] [blame] | 46 | ifeq ($(USE_32_BIT_KEYSTORE), true) |
| 47 | LOCAL_MULTILIB := 32 |
| 48 | endif |
Kenny Root | da1ed9a | 2012-04-10 12:34:07 -0700 | [diff] [blame] | 49 | LOCAL_CFLAGS := -Wall -Wextra -Werror |
Kenny Root | a91203b | 2012-02-15 15:00:46 -0800 | [diff] [blame] | 50 | LOCAL_SRC_FILES := keystore_cli.cpp |
Ying Wang | a6fe620 | 2013-04-09 22:05:12 -0700 | [diff] [blame] | 51 | LOCAL_SHARED_LIBRARIES := libcutils libcrypto libkeystore_binder libutils liblog libbinder |
Kenny Root | a91203b | 2012-02-15 15:00:46 -0800 | [diff] [blame] | 52 | LOCAL_MODULE := keystore_cli |
| 53 | LOCAL_MODULE_TAGS := debug |
Kenny Root | 6a9cafc | 2012-11-16 12:53:42 -0800 | [diff] [blame] | 54 | LOCAL_ADDITIONAL_DEPENDENCIES := $(LOCAL_PATH)/Android.mk |
Kenny Root | a91203b | 2012-02-15 15:00:46 -0800 | [diff] [blame] | 55 | include $(BUILD_EXECUTABLE) |
Kenny Root | 5187818 | 2012-03-13 12:53:19 -0700 | [diff] [blame] | 56 | |
| 57 | # Library for keystore clients |
| 58 | include $(CLEAR_VARS) |
Shawn Willden | bd4bb2f | 2014-08-29 16:31:51 -0600 | [diff] [blame] | 59 | ifeq ($(USE_32_BIT_KEYSTORE), true) |
| 60 | LOCAL_MULTILIB := 32 |
| 61 | endif |
Kenny Root | da1ed9a | 2012-04-10 12:34:07 -0700 | [diff] [blame] | 62 | LOCAL_CFLAGS := -Wall -Wextra -Werror |
Kenny Root | 07438c8 | 2012-11-02 15:41:02 -0700 | [diff] [blame] | 63 | LOCAL_SRC_FILES := IKeystoreService.cpp keystore_get.cpp keyblob_utils.cpp |
Chad Brubaker | 919cb2a | 2015-02-05 21:58:25 -0800 | [diff] [blame] | 64 | LOCAL_SHARED_LIBRARIES := libbinder libutils liblog libsoftkeymasterdevice |
Kenny Root | 07438c8 | 2012-11-02 15:41:02 -0700 | [diff] [blame] | 65 | LOCAL_MODULE := libkeystore_binder |
Kenny Root | 5187818 | 2012-03-13 12:53:19 -0700 | [diff] [blame] | 66 | LOCAL_MODULE_TAGS := optional |
Kenny Root | 07438c8 | 2012-11-02 15:41:02 -0700 | [diff] [blame] | 67 | LOCAL_C_INCLUDES := $(LOCAL_PATH)/include |
| 68 | LOCAL_EXPORT_C_INCLUDE_DIRS := $(LOCAL_PATH)/include |
Kenny Root | 6a9cafc | 2012-11-16 12:53:42 -0800 | [diff] [blame] | 69 | LOCAL_ADDITIONAL_DEPENDENCIES := $(LOCAL_PATH)/Android.mk |
Kenny Root | 822c3a9 | 2012-03-23 16:34:39 -0700 | [diff] [blame] | 70 | include $(BUILD_SHARED_LIBRARY) |
Shawn Willden | 489dfe1 | 2015-03-17 10:13:27 -0600 | [diff] [blame] | 71 | |
| 72 | # Library for unit tests |
| 73 | include $(CLEAR_VARS) |
| 74 | ifeq ($(USE_32_BIT_KEYSTORE), true) |
| 75 | LOCAL_MULTILIB := 32 |
| 76 | endif |
Shawn Willden | 489dfe1 | 2015-03-17 10:13:27 -0600 | [diff] [blame] | 77 | LOCAL_CFLAGS := -Wall -Wextra -Werror |
| 78 | LOCAL_SRC_FILES := auth_token_table.cpp |
| 79 | LOCAL_MODULE := libkeystore_test |
| 80 | LOCAL_C_INCLUDES := $(LOCAL_PATH)/include |
| 81 | LOCAL_STATIC_LIBRARIES := libgtest_main |
| 82 | LOCAL_SHARED_LIBRARIES := libkeymaster_messages |
| 83 | LOCAL_EXPORT_C_INCLUDE_DIRS := $(LOCAL_PATH)/include |
| 84 | LOCAL_ADDITIONAL_DEPENDENCIES := $(LOCAL_PATH)/Android.mk |
| 85 | include $(BUILD_STATIC_LIBRARY) |