* Remove unused local variables. * Suppress/fix warning of unused functions, conditionally used variables. Bug: 66996870 Test: build with WITH_TIDY=1 Change-Id: If92bc79f15a0486364da0389defbb2d43b3bd6ea
20 lines
318 B
Makefile
20 lines
318 B
Makefile
LOCAL_PATH:= $(call my-dir)
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_SRC_FILES:= \
|
|
codegen.cpp.arm
|
|
|
|
LOCAL_SHARED_LIBRARIES := \
|
|
libcutils \
|
|
libpixelflinger
|
|
|
|
LOCAL_C_INCLUDES := \
|
|
$(LOCAL_PATH)/../..
|
|
|
|
LOCAL_MODULE:= test-opengl-codegen
|
|
|
|
LOCAL_CFLAGS:= -Wall -Werror
|
|
|
|
LOCAL_MODULE_TAGS := tests
|
|
|
|
include $(BUILD_NATIVE_TEST)
|