summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--recovery/Android.bp5
-rw-r--r--recovery/recovery_ui.cpp4
2 files changed, 5 insertions, 4 deletions
diff --git a/recovery/Android.bp b/recovery/Android.bp
index 17dde5f0..0fd89068 100644
--- a/recovery/Android.bp
+++ b/recovery/Android.bp
@@ -26,7 +26,8 @@ cc_library_static {
srcs: [
"recovery_ui.cpp",
],
- include_dirs: [
- "bootable/recovery"
+
+ shared_libs: [
+ "librecovery_ui",
],
}
diff --git a/recovery/recovery_ui.cpp b/recovery/recovery_ui.cpp
index d67ff5f8..e82be6a6 100644
--- a/recovery/recovery_ui.cpp
+++ b/recovery/recovery_ui.cpp
@@ -14,8 +14,8 @@
* limitations under the License.
*/
-#include <device.h>
-#include <screen_ui.h>
+#include <recovery_ui/device.h>
+#include <recovery_ui/screen_ui.h>
namespace android {
namespace device {