blob: 5d8be8cc88fc5281fa89bc304258737ee27d4feb [file] [log] [blame]
Chia-chi Yeh458fe1e2009-06-26 14:36:17 +08001#
Chia-chi Yeh96869bd2011-03-23 11:32:28 -07002# Copyright (C) 2011 The Android Open Source Project
Chia-chi Yeh458fe1e2009-06-26 14:36:17 +08003#
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
Chia-chi Yeh458fe1e2009-06-26 14:36:17 +080017LOCAL_PATH := $(call my-dir)
Chia-chi Yeh96869bd2011-03-23 11:32:28 -070018
Chia-chi Yeh458fe1e2009-06-26 14:36:17 +080019include $(CLEAR_VARS)
20
21LOCAL_SRC_FILES := \
Chia-chi Yehf8a6a762011-07-04 17:21:23 -070022 src/racoon/algorithm.c \
23 src/racoon/crypto_openssl.c \
24 src/racoon/genlist.c \
25 src/racoon/handler.c \
Chia-chi Yeh458fe1e2009-06-26 14:36:17 +080026 src/racoon/isakmp.c \
27 src/racoon/isakmp_agg.c \
28 src/racoon/isakmp_base.c \
Chia-chi Yeh514ffe22011-07-07 13:52:27 -070029 src/racoon/isakmp_cfg.c \
Chia-chi Yeh458fe1e2009-06-26 14:36:17 +080030 src/racoon/isakmp_frag.c \
31 src/racoon/isakmp_ident.c \
32 src/racoon/isakmp_inf.c \
33 src/racoon/isakmp_newg.c \
34 src/racoon/isakmp_quick.c \
Chia-chi Yeh514ffe22011-07-07 13:52:27 -070035 src/racoon/isakmp_unity.c \
36 src/racoon/isakmp_xauth.c \
Chia-chi Yeh2ff6ed02011-07-12 19:55:48 -070037 src/racoon/ipsec_doi.c \
Chia-chi Yeh458fe1e2009-06-26 14:36:17 +080038 src/racoon/nattraversal.c \
Chia-chi Yehf8a6a762011-07-04 17:21:23 -070039 src/racoon/oakley.c \
40 src/racoon/pfkey.c \
41 src/racoon/policy.c \
42 src/racoon/proposal.c \
43 src/racoon/remoteconf.c \
44 src/racoon/schedule.c \
45 src/racoon/sockmisc.c \
46 src/racoon/str2val.c \
47 src/racoon/strnames.c \
48 src/racoon/vendorid.c \
49 src/racoon/vmbuf.c \
Chia-chi Yeh458fe1e2009-06-26 14:36:17 +080050 main.c \
51 setup.c
52
53LOCAL_C_INCLUDES += \
54 $(LOCAL_PATH) \
55 $(LOCAL_PATH)/src/include-glibc \
56 $(LOCAL_PATH)/src/libipsec \
57 $(LOCAL_PATH)/src/racoon \
Adam Langley329b1182015-01-22 16:54:45 -080058 $(LOCAL_PATH)/src/racoon/missing
Chia-chi Yeh458fe1e2009-06-26 14:36:17 +080059
Chia-chi Yeh96869bd2011-03-23 11:32:28 -070060LOCAL_STATIC_LIBRARIES := libipsec
61
Ying Wangf4cb1ee2013-04-09 21:48:54 -070062LOCAL_SHARED_LIBRARIES := libcutils liblog libcrypto
Chia-chi Yeh458fe1e2009-06-26 14:36:17 +080063
Adam Langley329b1182015-01-22 16:54:45 -080064ifneq (,$(wildcard $(TOP)/external/boringssl/flavor.mk))
65 include $(TOP)/external/boringssl/flavor.mk
66else
67 include $(TOP)/external/openssl/flavor.mk
68endif
Adam Langleya0292812014-09-30 15:20:01 -070069ifeq ($(OPENSSL_FLAVOR),BoringSSL)
70 LOCAL_SHARED_LIBRARIES += libkeystore-engine
71endif
72
Elliott Hughes1bae6ac2015-01-26 13:29:19 -080073LOCAL_CFLAGS := -DANDROID_CHANGES -DHAVE_CONFIG_H -DHAVE_OPENSSL_ENGINE_H -D_BSD_SOURCE=1
Chia-chi Yeh458fe1e2009-06-26 14:36:17 +080074
Adam Langleya0292812014-09-30 15:20:01 -070075LOCAL_CFLAGS += -Wno-sign-compare -Wno-missing-field-initializers -Wno-unused-parameter -Wno-pointer-sign -Werror
Chia-chi Yeh514ffe22011-07-07 13:52:27 -070076
Andreas Gampea169bc02014-12-05 01:23:32 -080077# Turn off unused XXX warnings. Should be removed/fixed when syncing with upstream. b/18523687, b/18632512
78LOCAL_CFLAGS += -Wno-unused-variable \
79 -Wno-unused-but-set-variable \
80 -Wno-unused-function \
81 -Wno-unused-label \
82 -Wno-unused-value
Andreas Gampeaf1ce1a2014-11-25 11:54:06 -080083
Chih-Hung Hsieh179de0d2014-10-22 15:12:13 -070084# pfkey.c, isakmp.c, remoteconf.c have some K&R warnings,
85# to be ignored until they are fixed from upstream.
86LOCAL_CLANG_CFLAGS += -Wno-knr-promoted-parameter
87
Chia-chi Yeh458fe1e2009-06-26 14:36:17 +080088LOCAL_MODULE := racoon
89
90include $(BUILD_EXECUTABLE)
91
Chia-chi Yeh96869bd2011-03-23 11:32:28 -070092##########################################################################
93
94include $(CLEAR_VARS)
95
96LOCAL_SRC_FILES := \
97 src/libipsec/pfkey.c \
98 src/libipsec/ipsec_strerror.c
99
Adam Langleya0292812014-09-30 15:20:01 -0700100LOCAL_CFLAGS := -DANDROID_CHANGES -DHAVE_CONFIG_H -DHAVE_OPENSSL_ENGINE_H
Chia-chi Yeh96869bd2011-03-23 11:32:28 -0700101
Adam Langleya0292812014-09-30 15:20:01 -0700102LOCAL_CFLAGS += -Wno-sign-compare -Wno-missing-field-initializers -Wno-unused-parameter -Wno-pointer-sign -Werror
Chia-chi Yeh514ffe22011-07-07 13:52:27 -0700103
Chih-Hung Hsieh179de0d2014-10-22 15:12:13 -0700104# pfkey.c has some K&R warnings,
105# to be ignored until they are fixed from upstream.
106LOCAL_CLANG_CFLAGS += -Wno-knr-promoted-parameter
107
Chia-chi Yeh96869bd2011-03-23 11:32:28 -0700108LOCAL_C_INCLUDES += \
109 $(LOCAL_PATH) \
110 $(LOCAL_PATH)/src/include-glibc \
111 $(LOCAL_PATH)/src/libipsec
112
113LOCAL_MODULE := libipsec
114
115LOCAL_MODULE_TAGS := optional
116
117include $(BUILD_STATIC_LIBRARY)