platform_frameworks_native/cmds/flatland/Android.mk
Chih-Hung Hsieh 1642dc6860 Use -Werror in frameworks/native/cmds
* Remove unused variables.

Bug: 66996870
Test: build with WITH_TIDY=1
Change-Id: Ifde10b651abbdb2ab1e236ebe47e25bf6c4c9b23
2017-11-07 11:32:00 -08:00

29 lines
592 B
Makefile

local_target_dir := $(TARGET_OUT_DATA)/local/tmp
LOCAL_PATH:= $(call my-dir)
include $(CLEAR_VARS)
LOCAL_SRC_FILES:= \
Composers.cpp \
GLHelper.cpp \
Renderers.cpp \
Main.cpp \
LOCAL_CFLAGS := -Wall -Werror
LOCAL_MODULE:= flatland
LOCAL_MODULE_TAGS := tests
LOCAL_MODULE_PATH := $(local_target_dir)
LOCAL_MULTILIB := both
LOCAL_MODULE_STEM_32 := flatland
LOCAL_MODULE_STEM_64 := flatland64
LOCAL_SHARED_LIBRARIES := \
libEGL \
libGLESv2 \
libcutils \
libgui \
libui \
libutils \
include $(BUILD_EXECUTABLE)