diff options
author | Colin Cross <ccross@android.com> | 2016-12-15 10:26:13 -0800 |
---|---|---|
committer | dd3boh <dade.garberi@gmail.com> | 2017-09-07 13:41:55 +0200 |
commit | 1e612befb31a3a4d8c24257392eaaa6557e66edc (patch) | |
tree | ca1fd6056135b1c5c7e54eb4bb641b9f9c47e239 | |
parent | e1dc735eb17ae039570f86e3f1e84ceb84f3e070 (diff) |
Depend on libandroid_runtime
libloc_pla is playing tricks with -Wl,--export-dynamic to use symbols
from libandroid_runtime without depending on it. libandroid_runtime's
headers are moving to where they are only exported to modules that
depend on it, so add a dependency and remove -Wl,--export-dynamic
Bug: 33630870
Test: builds
Change-Id: I9b0567a48ded63031085b6ba93fb3b36404279e1
(cherry picked from commit ada652709d5a1b9faedecc02739d2ed610e18f86)
-rw-r--r-- | gps/utils/platform_lib_abstractions/loc_pla/src/Android.mk | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/gps/utils/platform_lib_abstractions/loc_pla/src/Android.mk b/gps/utils/platform_lib_abstractions/loc_pla/src/Android.mk index 0363d59..1c15d56 100644 --- a/gps/utils/platform_lib_abstractions/loc_pla/src/Android.mk +++ b/gps/utils/platform_lib_abstractions/loc_pla/src/Android.mk @@ -10,7 +10,8 @@ LOCAL_SHARED_LIBRARIES := \ libutils \ libcutils \ liblog \ - libloc_stub + libloc_stub \ + libandroid_runtime LOCAL_SRC_FILES += \ platform_lib_android_runtime.cpp \ @@ -26,8 +27,6 @@ LOCAL_CFLAGS += \ -std=c++11 -LOCAL_LDFLAGS += -Wl,--export-dynamic - ## Includes LOCAL_C_INCLUDES:= \ $(LOCAL_PATH)/../include \ |