nexmon – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 # Note that some host libraries have the same module name as the target
2 # libraries. This is currently needed to build, for example, adb. But it's
3 # probably something that should be changed.
4  
5 THIS_LOCAL_PATH := $(call my-dir)
6 LOCAL_PATH := $(call my-dir)/../boringssl
7  
8 # Target static library
9 include $(CLEAR_VARS)
10 LOCAL_MODULE_TAGS := optional
11 LOCAL_MODULE := libcrypto
12 LOCAL_EXPORT_C_INCLUDE_DIRS := $(LOCAL_PATH)/src/include
13 LOCAL_ADDITIONAL_DEPENDENCIES := $(THIS_LOCAL_PATH)/Android.mk $(LOCAL_PATH)/crypto-sources.mk
14 LOCAL_SDK_VERSION := 9
15 LOCAL_CFLAGS += -fvisibility=hidden -DBORINGSSL_SHARED_LIBRARY -DBORINGSSL_IMPLEMENTATION -DOPENSSL_SMALL -DOPENSSL_NO_ASM -Wno-unused-parameter
16 # sha256-armv4.S does not compile with clang.
17 LOCAL_CLANG_ASFLAGS_arm += -no-integrated-as
18 LOCAL_CLANG_ASFLAGS_arm64 += -march=armv8-a+crypto
19 include $(LOCAL_PATH)/crypto-sources.mk
20 include $(BUILD_STATIC_LIBRARY)