Remove libbase's libutils dependency.

Yuck.

Change-Id: If84758f25bc15d5b1a732eaccc226385f51cac13
This commit is contained in:
Elliott Hughes 2016-02-17 11:53:54 -08:00
parent 2773d4f96a
commit 38e2b63db8
1 changed files with 3 additions and 1 deletions

View File

@ -16,7 +16,6 @@
#include "android-base/logging.h"
#include "android-base/test_utils.h"
#include "utils/Compat.h" // For OS_PATH_SEPARATOR.
#include <fcntl.h>
#include <stdio.h>
@ -27,6 +26,9 @@
#if defined(_WIN32)
#include <windows.h>
#include <direct.h>
#define OS_PATH_SEPARATOR '\\'
#else
#define OS_PATH_SEPARATOR '/'
#endif
#include <string>