commit | f78c440b20addac8bb9356d82d20fa0db9b6c9fd | [log] [tgz] |
---|---|---|
author | Josh Gao <jmgao@google.com> | Thu Jan 19 13:44:23 2017 -0800 |
committer | Josh Gao <jmgao@google.com> | Thu Jan 19 15:49:55 2017 -0800 |
tree | efe1df4d0d154d93b6eacab06b29dbdd1c63dad2 | |
parent | 31bbef1ed3abccd09cb0dece3cf16e98779b7aaf [diff] |
adb: move usb_* to client/usb_*. Bug: http://b/31321337 Test: mma Change-Id: I21eefab953737e87d211959616ac4f48926dd92c
diff --git a/adb/Android.mk b/adb/Android.mk index 1ad77f1..41cb735 100644 --- a/adb/Android.mk +++ b/adb/Android.mk
@@ -81,17 +81,17 @@ 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