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

Commit 57e09b16 authored by Josh Gao's avatar Josh Gao
Browse files

adb: move fdevent to its own folder.

Preparatory refactoring for platform-specific implementations.

Test: mma
Change-Id: I0f600122ac89241788c5f3300f362fd9ef02ddcd
parent 2d03ad42
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -124,7 +124,7 @@ libadb_srcs = [
    "adb_trace.cpp",
    "adb_unique_fd.cpp",
    "adb_utils.cpp",
    "fdevent.cpp",
    "fdevent/fdevent.cpp",
    "services.cpp",
    "sockets.cpp",
    "socket_spec.cpp",
@@ -144,7 +144,7 @@ libadb_test_srcs = [
    "adb_io_test.cpp",
    "adb_listeners_test.cpp",
    "adb_utils_test.cpp",
    "fdevent_test.cpp",
    "fdevent/fdevent_test.cpp",
    "socket_spec_test.cpp",
    "socket_test.cpp",
    "sysdeps_test.cpp",
+1 −1
Original line number Diff line number Diff line
@@ -26,7 +26,7 @@
#include <android-base/macros.h>

#include "adb_trace.h"
#include "fdevent.h"
#include "fdevent/fdevent.h"
#include "socket.h"
#include "types.h"
#include "usb.h"
+1 −1
Original line number Diff line number Diff line
@@ -21,7 +21,7 @@
#include <android-base/stringprintf.h>
#include <android-base/strings.h>

#include "fdevent.h"
#include "fdevent/fdevent.h"
#include "sysdeps.h"
#include "transport.h"

+1 −1
Original line number Diff line number Diff line
@@ -31,7 +31,7 @@

#include "adb_mdns.h"
#include "adb_trace.h"
#include "fdevent.h"
#include "fdevent/fdevent.h"
#include "sysdeps.h"

static DNSServiceRef service_ref;
+1 −1
Original line number Diff line number Diff line
@@ -19,7 +19,7 @@
#include "adb.h"
#include "adb_auth.h"
#include "adb_io.h"
#include "fdevent.h"
#include "fdevent/fdevent.h"
#include "sysdeps.h"
#include "transport.h"

Loading