blob: 4a3cbe410d2b32f99164552c0ae476858d8efbff [file] [log] [blame]
Srinath Sridharan96276382016-03-10 10:22:30 -08001LOCAL_PATH := $(call my-dir)
2ifeq ($(TARGET_ARCH),arm64)
3include $(CLEAR_VARS)
4
Chih-Hung Hsieh373d3c72017-10-18 16:28:14 -07005LOCAL_CFLAGS := -O0 -march=armv8-a+crypto -Wall -Werror
Srinath Sridharan96276382016-03-10 10:22:30 -08006LOCAL_SRC_FILES := crypto.cpp
7
8LOCAL_MODULE_PATH := $(TARGET_OUT_OPTIONAL_EXECUTABLES)
9LOCAL_MODULE_TAGS := debug
10LOCAL_MODULE := crypto
11
12include $(BUILD_EXECUTABLE)
13endif