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

Commit 56a8f942 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "split libsensor our of libgui "

parents c9e55782 801ea093
Loading
Loading
Loading
Loading
+0 −0

File moved.

+2 −11
Original line number Diff line number Diff line
@@ -38,10 +38,6 @@ cc_library_shared {
        // Don't warn about struct padding
        "-Wno-padded",

        // android/sensors.h uses nested anonymous unions and anonymous structs
        "-Wno-nested-anon-types",
        "-Wno-gnu-anonymous-struct",

        // We are aware of the risks inherent in comparing floats for equality
        "-Wno-float-equal",

@@ -61,8 +57,6 @@ cc_library_shared {
    },

    srcs: [
        "IGraphicBufferConsumer.cpp",
        "IConsumerListener.cpp",
        "BitTube.cpp",
        "BufferItem.cpp",
        "BufferItemConsumer.cpp",
@@ -79,18 +73,15 @@ cc_library_shared {
        "GraphicBufferAlloc.cpp",
        "GuiConfig.cpp",
        "IDisplayEventConnection.cpp",
        "IConsumerListener.cpp",
        "IGraphicBufferAlloc.cpp",
        "IGraphicBufferConsumer.cpp",
        "IGraphicBufferProducer.cpp",
        "IProducerListener.cpp",
        "ISensorEventConnection.cpp",
        "ISensorServer.cpp",
        "ISurfaceComposer.cpp",
        "ISurfaceComposerClient.cpp",
        "LayerState.cpp",
        "OccupancyTracker.cpp",
        "Sensor.cpp",
        "SensorEventQueue.cpp",
        "SensorManager.cpp",
        "StreamSplitter.cpp",
        "Surface.cpp",
        "SurfaceControl.cpp",
+2 −1
Original line number Diff line number Diff line
@@ -14,6 +14,8 @@
 * limitations under the License.
 */

#include <private/gui/BitTube.h>

#include <stdint.h>
#include <sys/types.h>
#include <sys/socket.h>
@@ -25,7 +27,6 @@

#include <binder/Parcel.h>

#include <gui/BitTube.h>

namespace android {
// ----------------------------------------------------------------------------
+2 −1
Original line number Diff line number Diff line
@@ -18,13 +18,14 @@

#include <utils/Errors.h>

#include <gui/BitTube.h>
#include <gui/DisplayEventReceiver.h>
#include <gui/IDisplayEventConnection.h>
#include <gui/ISurfaceComposer.h>

#include <private/gui/ComposerService.h>

#include <private/gui/BitTube.h>

// ---------------------------------------------------------------------------

namespace android {
+2 −4
Original line number Diff line number Diff line
@@ -15,17 +15,15 @@
 */

#include <stdint.h>
#include <sys/types.h>

#include <utils/Errors.h>
#include <utils/RefBase.h>
#include <utils/Timers.h>

#include <binder/Parcel.h>
#include <binder/IInterface.h>

#include <gui/IDisplayEventConnection.h>
#include <gui/BitTube.h>

#include <private/gui/BitTube.h>

namespace android {
// ----------------------------------------------------------------------------
Loading