From 456e1ad42034316cee5a6467c4bcb23643b51e5a Mon Sep 17 00:00:00 2001 From: Josh Gao Date: Thu, 19 Jan 2017 13:44:23 -0800 Subject: [PATCH] adb: move usb_* to client/usb_*. Bug: http://b/31321337 Test: mma Change-Id: I21eefab953737e87d211959616ac4f48926dd92c --- adb/Android.mk | 6 +++--- adb/{ => client}/usb_linux.cpp | 0 adb/{ => client}/usb_osx.cpp | 0 adb/{ => client}/usb_windows.cpp | 0 4 files changed, 3 insertions(+), 3 deletions(-) rename adb/{ => client}/usb_linux.cpp (100%) rename adb/{ => client}/usb_osx.cpp (100%) rename adb/{ => client}/usb_windows.cpp (100%) diff --git a/adb/Android.mk b/adb/Android.mk index 1ad77f1e4..41cb7359c 100644 --- a/adb/Android.mk +++ b/adb/Android.mk @@ -81,17 +81,17 @@ LIBADB_windows_CFLAGS := \ LIBADB_darwin_SRC_FILES := \ sysdeps_unix.cpp \ - usb_osx.cpp \ + client/usb_osx.cpp \ LIBADB_linux_SRC_FILES := \ sysdeps_unix.cpp \ - usb_linux.cpp \ + client/usb_linux.cpp \ LIBADB_windows_SRC_FILES := \ sysdeps_win32.cpp \ sysdeps/win32/errno.cpp \ sysdeps/win32/stat.cpp \ - usb_windows.cpp \ + client/usb_windows.cpp \ LIBADB_TEST_windows_SRCS := \ sysdeps/win32/errno_test.cpp \ diff --git a/adb/usb_linux.cpp b/adb/client/usb_linux.cpp similarity index 100% rename from adb/usb_linux.cpp rename to adb/client/usb_linux.cpp diff --git a/adb/usb_osx.cpp b/adb/client/usb_osx.cpp similarity index 100% rename from adb/usb_osx.cpp rename to adb/client/usb_osx.cpp diff --git a/adb/usb_windows.cpp b/adb/client/usb_windows.cpp similarity index 100% rename from adb/usb_windows.cpp rename to adb/client/usb_windows.cpp