summaryrefslogtreecommitdiffstats
path: root/opengl/libagl
diff options
context:
space:
mode:
authorMathias Agopian <mathias@google.com>2009-06-03 18:26:58 -0700
committerMathias Agopian <mathias@google.com>2009-06-03 18:26:58 -0700
commitb4b4c11f82e88f9a1cecd97460a9fcc192b37612 (patch)
treebd1c266012b39e4f6c7e0c961d20842d6f1ee1e9 /opengl/libagl
parenta650aaa3918f47ceb116ce8dfd3f1e423687fa69 (diff)
downloadframeworks_base-b4b4c11f82e88f9a1cecd97460a9fcc192b37612.zip
frameworks_base-b4b4c11f82e88f9a1cecd97460a9fcc192b37612.tar.gz
frameworks_base-b4b4c11f82e88f9a1cecd97460a9fcc192b37612.tar.bz2
fix/clean these Android.mk following dbort and joeo's comments
Diffstat (limited to 'opengl/libagl')
-rw-r--r--opengl/libagl/Android.mk5
1 files changed, 3 insertions, 2 deletions
diff --git a/opengl/libagl/Android.mk b/opengl/libagl/Android.mk
index 060f3c6..d1ed82e 100644
--- a/opengl/libagl/Android.mk
+++ b/opengl/libagl/Android.mk
@@ -32,12 +32,13 @@ endif
ifneq ($(TARGET_SIMULATOR),true)
# we need to access the private Bionic header <bionic_tls.h>
- LOCAL_CFLAGS += -I$(LOCAL_PATH)/../../../../bionic/libc/private
+ LOCAL_C_INCLUDES += bionic/libc/private
endif
ifeq ($(LIBAGL_USE_GRALLOC_COPYBITS),1)
- LOCAL_CFLAGS += -DLIBAGL_USE_GRALLOC_COPYBITS -I$(LOCAL_PATH)/../../../../hardware/libhardware/modules/gralloc
+ LOCAL_CFLAGS += -DLIBAGL_USE_GRALLOC_COPYBITS
LOCAL_SRC_FILES += copybit.cpp
+ LOCAL_C_INCLUDES += hardware/libhardware/modules/gralloc
endif
LOCAL_CFLAGS += -DLOG_TAG=\"libagl\"