aboutsummaryrefslogtreecommitdiff
path: root/Android.mk
blob: 16e55bd962568bd4ac3e653fb14835a109dccb81 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#
# Android.mk
#
# Copyright (C) 2014 Zoran Markovic <zoran.markovic@linaro.org>
#
# This file is subject to the terms and conditions of the GNU General Public
# License, version 2. 
#
LOCAL_PATH := $(call my-dir)
include $(CLEAR_VARS)

LOCAL_MODULE_TAGS := optional
LOCAL_SHARED_LIBRARIES := libstlport

LOCAL_MODULE := idlestat

LOCAL_C_INCLUDES +=	bionic \

LOCAL_SRC_FILES += \
	idlestat.c \
	topology.c \
	trace.c    \
	utils.c   \

include $(BUILD_EXECUTABLE)