diff options
| author | Chris Manton <cmanton@google.com> | 2014-11-12 16:31:43 -0800 |
|---|---|---|
| committer | Andre Eisenbach <eisenbach@google.com> | 2015-03-16 16:51:40 -0700 |
| commit | 408ffb6006319c2db1812c1572b04859d7b366eb (patch) | |
| tree | b572c06734f7e17dd17cdd073cdcbb5d2e40874d /osi/Android.mk | |
| parent | c0745da4fb23eea23abac3c3cfd51cc7f1d38f6d (diff) | |
| download | android_system_bt-408ffb6006319c2db1812c1572b04859d7b366eb.tar.gz android_system_bt-408ffb6006319c2db1812c1572b04859d7b366eb.tar.bz2 android_system_bt-408ffb6006319c2db1812c1572b04859d7b366eb.zip | |
Explicitly add include paths
Allocation test harness included relatively local
header allocation_tracker.h. Change to include
absolute header location from bluedroid root.
Diffstat (limited to 'osi/Android.mk')
| -rw-r--r-- | osi/Android.mk | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/osi/Android.mk b/osi/Android.mk index 3d0316fc5..7141dff47 100644 --- a/osi/Android.mk +++ b/osi/Android.mk @@ -21,7 +21,8 @@ LOCAL_PATH := $(call my-dir) include $(CLEAR_VARS) LOCAL_C_INCLUDES := \ - $(LOCAL_PATH)/include + $(LOCAL_PATH)/include \ + $(LOCAL_PATH)/.. LOCAL_SRC_FILES := \ ./src/alarm.c \ @@ -54,7 +55,8 @@ include $(BUILD_STATIC_LIBRARY) include $(CLEAR_VARS) LOCAL_C_INCLUDES := \ - $(LOCAL_PATH)/include + $(LOCAL_PATH)/include \ + $(LOCAL_PATH)/.. LOCAL_SRC_FILES := \ ./test/AlarmTestHarness.cpp \ |
