Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f1cb02e7 authored by Mathias Agopian's avatar Mathias Agopian
Browse files

fallout of splitting rect.h out of libandroid.

- Main goal here: libandroid now links against 
libarect and export its includes.

- Also fix some wrongful makefiles that included 
headers without proper dependency list.

Test: built and booted device
Bug: 35164655
Change-Id: Iae17b966bba00fe53424486a75eebff468873787
parent 0df4c607
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -25,6 +25,7 @@

#include <gui/GLConsumer.h>
#include <gui/Surface.h>
#include <gui/BufferQueue.h>

#include "core_jni_helpers.h"

+1 −1
Original line number Diff line number Diff line
@@ -43,6 +43,6 @@ LOCAL_C_INCLUDES += \

LOCAL_CFLAGS += -Wall -Werror -Wunused -Wunreachable-code -Wno-unused-parameter

LOCAL_SHARED_LIBRARIES := libmedia
LOCAL_SHARED_LIBRARIES := libmedia libgui libandroid

include $(BUILD_STATIC_LIBRARY)
+2 −0
Original line number Diff line number Diff line
@@ -41,6 +41,8 @@ LOCAL_EXPORT_LDLIBS := -llog -lgcc

LOCAL_CFLAGS += -Wall -Werror -Wunused -Wunreachable-code

LOCAL_STATIC_LIBRARIES := libarect

# TODO: Build a shared library as well?
include $(BUILD_STATIC_LIBRARY)
+3 −0
Original line number Diff line number Diff line
@@ -26,7 +26,10 @@
#include <string>
#include <EGL/eglext.h>

#include <gui/BufferQueue.h>
#include <gui/Surface.h>
#include <gui/GLConsumer.h>
#include <gui/IGraphicBufferProducer.h>

namespace android {
namespace filterfw {
+3 −2
Original line number Diff line number Diff line
@@ -27,8 +27,9 @@
#include <GLES2/gl2.h>
#include <EGL/egl.h>

#include <gui/IGraphicBufferProducer.h>
#include <gui/Surface.h>
#include <utils/StrongPointer.h>

struct ANativeWindow;

namespace android {

Loading