pixelflinger should not be used for new projects and should be moved out of system/core at some point. As the first step, move all its headers under system/core/libpixelflinger/include and update its Android.mk files so they're not referring to the absolute system/core path anymore. Change-Id: Idead273ab2c0450409d770f5402c4dba916192a9 Signed-off-by: Greg Hackmann <ghackmann@google.com>
18 lines
288 B
Makefile
18 lines
288 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_MODULE_TAGS := tests
|
|
|
|
include $(BUILD_NATIVE_TEST)
|