summaryrefslogtreecommitdiff
path: root/Android.mk (plain)
blob: 3ebe532213e97f8b4ddcc7806d8fe7bad68f2eeb
1# Copyright (c) 2014 Amlogic, Inc. All rights reserved.
2#
3# This source code is subject to the terms and conditions defined in the
4# file 'LICENSE' which is part of this source code package.
5#
6# Description: makefile
7
8LOCAL_PATH:= $(call my-dir)
9include $(CLEAR_VARS)
10
11LOCAL_MODULE_TAGS := optional
12
13LOCAL_SRC_FILES := $(call all-java-files-under, src)
14
15ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 26 && echo OK),OK)
16LOCAL_PROPRIETARY_MODULE := true
17endif
18
19LOCAL_PACKAGE_NAME := Dig
20LOCAL_CERTIFICATE := platform
21
22include $(BUILD_PACKAGE)
23
24# Use the folloing include to make our test apk.
25include $(call all-makefiles-under,$(LOCAL_PATH))
26