| # -*- mode: makefile -*- |
| # Copyright (C) 2013 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. |
| |
| # |
| # Definitions for building the Conscrypt Java library, native code, |
| # and associated tests. |
| # |
| |
| # |
| # Common definitions for host and target. |
| # |
| |
| # Conscrypt is divided into modules. |
| # |
| # The structure is: |
| # |
| # src/ |
| # main/ # To be shipped on every device. |
| # java/ # Java source for library code. |
| # native/ # C++ source for library code. |
| # resources/ # Support files. |
| # test/ # Built only on demand, for testing. |
| # java/ # Java source for tests. |
| # native/ # C++ source for tests (rare). |
| # resources/ # Support files. |
| # |
| # All subdirectories are optional (hence the "2> /dev/null"s below). |
| |
| LOCAL_PATH := $(call my-dir) |
| |
| local_javac_flags:=-Xmaxwarns 9999999 |
| #local_javac_flags+=-Xlint:all -Xlint:-serial,-deprecation,-unchecked |
| |
| core_cflags := -Wall -Wextra -Werror -Wunused |
| core_cppflags := -std=gnu++11 -Wall -Wextra -Werror -Wunused |
| |
| # |
| # Build for the target (device). |
| # |
| |
| include $(CLEAR_VARS) |
| LOCAL_CPP_EXTENSION := cc |
| LOCAL_SRC_FILES := src/gen/native/generate_constants.cc |
| LOCAL_MODULE := conscrypt_generate_constants |
| LOCAL_SHARED_LIBRARIES := libcrypto-host libssl-host |
| include $(BUILD_HOST_EXECUTABLE) |
| |
| conscrypt_generate_constants_exe := $(LOCAL_INSTALLED_MODULE) |
| conscrypt_gen_java_files := $(TARGET_OUT_COMMON_GEN)/conscrypt/NativeConstants.java |
| |
| $(conscrypt_gen_java_files): $(conscrypt_generate_constants_exe) |
| mkdir -p $(dir $@) |
| $< > $@ |
| |
| # Create the conscrypt library |
| include $(CLEAR_VARS) |
| LOCAL_SRC_FILES := $(call all-java-files-under,src/main/java) |
| LOCAL_SRC_FILES += $(call all-java-files-under,src/platform/java) |
| LOCAL_GENERATED_SOURCES := $(conscrypt_gen_java_files) |
| LOCAL_JAVA_LIBRARIES := core-libart |
| LOCAL_NO_STANDARD_LIBRARIES := true |
| LOCAL_JAVACFLAGS := $(local_javac_flags) |
| LOCAL_JARJAR_RULES := $(LOCAL_PATH)/jarjar-rules.txt |
| LOCAL_MODULE_TAGS := optional |
| LOCAL_MODULE := conscrypt |
| LOCAL_REQUIRED_MODULES := libjavacrypto |
| LOCAL_ADDITIONAL_DEPENDENCIES := $(LOCAL_PATH)/Android.mk |
| include $(BUILD_JAVA_LIBRARY) |
| |
| # Create the conscrypt library without jarjar for tests |
| include $(CLEAR_VARS) |
| LOCAL_SRC_FILES := $(call all-java-files-under,src/main/java) |
| LOCAL_SRC_FILES += $(call all-java-files-under,src/platform/java) |
| LOCAL_GENERATED_SOURCES := $(conscrypt_gen_java_files) |
| LOCAL_JAVA_LIBRARIES := core-libart |
| LOCAL_NO_STANDARD_LIBRARIES := true |
| LOCAL_JAVACFLAGS := $(local_javac_flags) |
| LOCAL_MODULE_TAGS := optional |
| LOCAL_MODULE := conscrypt-nojarjar |
| LOCAL_ADDITIONAL_DEPENDENCIES := $(LOCAL_PATH)/Android.mk |
| include $(BUILD_STATIC_JAVA_LIBRARY) |
| |
| ifeq ($(LIBCORE_SKIP_TESTS),) |
| # Make the conscrypt-tests library. |
| include $(CLEAR_VARS) |
| LOCAL_SRC_FILES := $(call all-java-files-under,src/test/java) |
| LOCAL_NO_STANDARD_LIBRARIES := true |
| LOCAL_JAVA_LIBRARIES := core-libart core-junit bouncycastle |
| LOCAL_STATIC_JAVA_LIBRARIES := core-tests-support conscrypt-nojarjar |
| LOCAL_JAVACFLAGS := $(local_javac_flags) |
| LOCAL_MODULE_TAGS := optional |
| LOCAL_MODULE := conscrypt-tests |
| LOCAL_REQUIRED_MODULES := libjavacrypto |
| LOCAL_JARJAR_RULES := $(LOCAL_PATH)/jarjar-rules.txt |
| LOCAL_ADDITIONAL_DEPENDENCIES := $(LOCAL_PATH)/Android.mk |
| include $(BUILD_STATIC_JAVA_LIBRARY) |
| endif |
| |
| # Platform conscrypt crypto JNI library |
| include $(CLEAR_VARS) |
| ifneq (,$(wildcard $(TOP)/external/boringssl/flavor.mk)) |
| include $(TOP)/external/boringssl/flavor.mk |
| else |
| include $(TOP)/external/openssl/flavor.mk |
| endif |
| LOCAL_CFLAGS += $(core_cflags) |
| LOCAL_CFLAGS += -DJNI_JARJAR_PREFIX="com/android/" |
| LOCAL_CPPFLAGS += $(core_cppflags) |
| LOCAL_SRC_FILES := \ |
| src/main/native/org_conscrypt_NativeCrypto.cpp |
| LOCAL_C_INCLUDES += \ |
| external/openssl/include \ |
| external/openssl \ |
| libcore/include \ |
| libcore/luni/src/main/native |
| LOCAL_SHARED_LIBRARIES := libcrypto libjavacore liblog libnativehelper libssl libz |
| ifeq ($(OPENSSL_FLAVOR),BoringSSL) |
| LOCAL_SHARED_LIBRARIES += libkeystore-engine |
| endif |
| LOCAL_MODULE_TAGS := optional |
| LOCAL_MODULE := libjavacrypto |
| LOCAL_ADDITIONAL_DEPENDENCIES := $(LOCAL_PATH)/Android.mk |
| include $(BUILD_SHARED_LIBRARY) |
| |
| # Unbundled Conscrypt jar |
| include $(CLEAR_VARS) |
| LOCAL_SRC_FILES := $(call all-java-files-under,src/main/java) |
| LOCAL_SRC_FILES += $(call all-java-files-under,src/compat/java) |
| LOCAL_GENERATED_SOURCES := $(conscrypt_gen_java_files) |
| LOCAL_SDK_VERSION := 9 |
| LOCAL_JAVACFLAGS := $(local_javac_flags) |
| LOCAL_MODULE_TAGS := optional |
| LOCAL_MODULE := conscrypt_unbundled |
| LOCAL_JAVA_LIBRARIES := conscrypt-stubs |
| LOCAL_ADDITIONAL_DEPENDENCIES := $(LOCAL_PATH)/Android.mk |
| LOCAL_JACK_FLAGS := -D jack.classpath.default-libraries=false |
| include $(BUILD_STATIC_JAVA_LIBRARY) |
| |
| # Stub library for unbundled builds |
| include $(CLEAR_VARS) |
| LOCAL_SRC_FILES := $(call all-java-files-under,src/stub/java) |
| LOCAL_SDK_VERSION := 9 |
| LOCAL_JAVACFLAGS := $(local_javac_flags) |
| LOCAL_MODULE := conscrypt-stubs |
| LOCAL_JACK_FLAGS := -D jack.classpath.default-libraries=false |
| include $(BUILD_STATIC_JAVA_LIBRARY) |
| |
| # Unbundled Conscrypt crypto JNI library |
| include $(CLEAR_VARS) |
| LOCAL_CFLAGS += $(core_cflags) |
| LOCAL_CPPFLAGS += $(core_cppflags) |
| LOCAL_SRC_FILES := \ |
| src/main/native/org_conscrypt_NativeCrypto.cpp \ |
| src/compat/native/JNIHelp.cpp |
| LOCAL_C_INCLUDES += \ |
| external/openssl/include \ |
| external/openssl \ |
| external/conscrypt/src/compat/native |
| # NO_KEYSTORE_ENGINE instructs the BoringSSL build of Conscrypt not to support |
| # the keystore ENGINE. It is not available in this build configuration. |
| LOCAL_CFLAGS += -DNO_KEYSTORE_ENGINE |
| LOCAL_LDFLAGS := -llog -lz -ldl |
| LOCAL_STATIC_LIBRARIES := libssl_static libcrypto_static |
| LOCAL_MODULE_TAGS := optional |
| LOCAL_MODULE := libconscrypt_jni |
| LOCAL_ADDITIONAL_DEPENDENCIES := $(LOCAL_PATH)/Android.mk |
| LOCAL_SDK_VERSION := 9 |
| include $(BUILD_SHARED_LIBRARY) |
| |
| # Static unbundled Conscrypt crypto JNI library |
| include $(CLEAR_VARS) |
| LOCAL_CFLAGS += $(core_cflags) |
| LOCAL_CPPFLAGS += $(core_cppflags) -DJNI_JARJAR_PREFIX="com/google/android/gms/" -DCONSCRYPT_UNBUNDLED -DSTATIC_LIB |
| LOCAL_SRC_FILES := \ |
| src/main/native/org_conscrypt_NativeCrypto.cpp \ |
| src/compat/native/JNIHelp.cpp |
| LOCAL_C_INCLUDES += \ |
| external/openssl/include \ |
| external/openssl \ |
| external/conscrypt/src/compat/native |
| LOCAL_MODULE_TAGS := optional |
| LOCAL_MODULE := libconscrypt_static |
| LOCAL_ADDITIONAL_DEPENDENCIES := $(LOCAL_PATH)/Android.mk |
| LOCAL_STATIC_LIBRARIES := libssl_static libcrypto_static |
| LOCAL_SDK_VERSION := 9 |
| include $(BUILD_STATIC_LIBRARY) |
| |
| # |
| # Build for the host. |
| # |
| |
| ifeq ($(HOST_OS),linux) |
| |
| # Make the conscrypt-hostdex library |
| include $(CLEAR_VARS) |
| LOCAL_SRC_FILES := $(call all-java-files-under,src/main/java) |
| LOCAL_SRC_FILES += $(call all-java-files-under,src/platform/java) |
| LOCAL_GENERATED_SOURCES := $(conscrypt_gen_java_files) |
| LOCAL_JAVACFLAGS := $(local_javac_flags) |
| LOCAL_JARJAR_RULES := $(LOCAL_PATH)/jarjar-rules.txt |
| LOCAL_MODULE_TAGS := optional |
| LOCAL_MODULE := conscrypt-hostdex |
| LOCAL_REQUIRED_MODULES := libjavacrypto |
| LOCAL_ADDITIONAL_DEPENDENCIES := $(LOCAL_PATH)/Android.mk |
| include $(BUILD_HOST_DALVIK_JAVA_LIBRARY) |
| |
| # Make the conscrypt-hostdex-nojarjar for tests |
| include $(CLEAR_VARS) |
| LOCAL_SRC_FILES := $(call all-java-files-under,src/main/java) |
| LOCAL_SRC_FILES += $(call all-java-files-under,src/platform/java) |
| LOCAL_GENERATED_SOURCES := $(conscrypt_gen_java_files) |
| LOCAL_JAVACFLAGS := $(local_javac_flags) |
| LOCAL_BUILD_HOST_DEX := true |
| LOCAL_MODULE_TAGS := optional |
| LOCAL_MODULE := conscrypt-hostdex-nojarjar |
| LOCAL_ADDITIONAL_DEPENDENCIES := $(LOCAL_PATH)/Android.mk |
| include $(BUILD_HOST_DALVIK_JAVA_LIBRARY) |
| |
| # Make the conscrypt-tests library. |
| ifeq ($(LIBCORE_SKIP_TESTS),) |
| include $(CLEAR_VARS) |
| LOCAL_SRC_FILES := $(call all-java-files-under,src/test/java) |
| LOCAL_JAVA_LIBRARIES := bouncycastle-hostdex core-junit-hostdex core-tests-support-hostdex conscrypt-hostdex-nojarjar |
| LOCAL_JAVACFLAGS := $(local_javac_flags) |
| LOCAL_MODULE_TAGS := optional |
| LOCAL_MODULE := conscrypt-tests-hostdex |
| LOCAL_REQUIRED_MODULES := libjavacrypto |
| LOCAL_ADDITIONAL_DEPENDENCIES := $(LOCAL_PATH)/Android.mk |
| include $(BUILD_HOST_DALVIK_JAVA_LIBRARY) |
| endif |
| |
| # Conscrypt native library for host |
| include $(CLEAR_VARS) |
| LOCAL_CLANG := true |
| LOCAL_SRC_FILES += \ |
| src/main/native/org_conscrypt_NativeCrypto.cpp |
| LOCAL_C_INCLUDES += \ |
| external/openssl/include \ |
| external/openssl \ |
| libcore/include \ |
| libcore/luni/src/main/native |
| LOCAL_CPPFLAGS += $(core_cppflags) |
| LOCAL_LDLIBS += -lpthread |
| LOCAL_MODULE_TAGS := optional |
| LOCAL_MODULE := libjavacrypto |
| LOCAL_CFLAGS += -DJNI_JARJAR_PREFIX="com/android/" |
| # NO_KEYSTORE_ENGINE instructs the BoringSSL build of Conscrypt not to support |
| # the keystore ENGINE. It is not available in this build configuration. |
| LOCAL_CFLAGS += -DNO_KEYSTORE_ENGINE |
| LOCAL_ADDITIONAL_DEPENDENCIES := $(LOCAL_PATH)/Android.mk |
| LOCAL_SHARED_LIBRARIES := libcrypto-host libjavacore liblog libnativehelper libssl-host |
| LOCAL_MULTILIB := both |
| include $(BUILD_HOST_SHARED_LIBRARY) |
| |
| # Conscrypt native library for nojarjar'd version |
| # Don't build this for unbundled conscrypt build |
| ifeq (,$(TARGET_BUILD_APPS)) |
| include $(CLEAR_VARS) |
| LOCAL_CLANG := true |
| LOCAL_SRC_FILES += \ |
| src/main/native/org_conscrypt_NativeCrypto.cpp |
| LOCAL_C_INCLUDES += \ |
| external/openssl/include \ |
| external/openssl \ |
| libcore/include \ |
| libcore/luni/src/main/native |
| LOCAL_CPPFLAGS += $(core_cppflags) -DCONSCRYPT_NOT_UNBUNDLED |
| LOCAL_LDLIBS += -lpthread |
| LOCAL_MODULE_TAGS := optional |
| LOCAL_MODULE := libconscrypt_jni |
| LOCAL_ADDITIONAL_DEPENDENCIES := $(LOCAL_PATH)/Android.mk |
| # NO_KEYSTORE_ENGINE instructs the BoringSSL build of Conscrypt not to |
| # support the keystore ENGINE. It is not available in this build |
| # configuration. |
| LOCAL_CFLAGS += -DNO_KEYSTORE_ENGINE |
| LOCAL_SHARED_LIBRARIES := libcrypto-host libjavacore liblog libnativehelper libssl-host |
| LOCAL_MULTILIB := both |
| include $(BUILD_HOST_SHARED_LIBRARY) |
| endif |
| |
| endif # HOST_OS == linux |
| |
| # clear out local variables |
| core_cflags := |
| core_cppflags := |
| local_javac_flags := |