bootstat: Fix the base includes to be AOSP-friendly.
Change-Id: I625cc55b41f5258addf3bb74bcef42063c565465 Bug: 21724738
This commit is contained in:
parent
d0009911de
commit
eabe08b55e
7 changed files with 9 additions and 9 deletions
|
@ -21,8 +21,8 @@
|
|||
#include <sys/stat.h>
|
||||
#include <utime.h>
|
||||
#include <cstdlib>
|
||||
#include <base/file.h>
|
||||
#include <base/logging.h>
|
||||
#include <android-base/file.h>
|
||||
#include <android-base/logging.h>
|
||||
|
||||
namespace {
|
||||
|
||||
|
|
|
@ -21,7 +21,7 @@
|
|||
#include <string>
|
||||
#include <utility>
|
||||
#include <vector>
|
||||
#include <base/macros.h>
|
||||
#include <android-base/macros.h>
|
||||
#include <gtest/gtest_prod.h>
|
||||
|
||||
// BootEventRecordStore manages the persistence of boot events to the record
|
||||
|
|
|
@ -21,8 +21,8 @@
|
|||
#include <unistd.h>
|
||||
#include <cstdint>
|
||||
#include <cstdlib>
|
||||
#include <base/file.h>
|
||||
#include <base/test_utils.h>
|
||||
#include <android-base/file.h>
|
||||
#include <android-base/test_utils.h>
|
||||
#include <gtest/gtest.h>
|
||||
#include <gmock/gmock.h>
|
||||
|
||||
|
|
|
@ -25,7 +25,7 @@
|
|||
#include <cstdio>
|
||||
#include <memory>
|
||||
#include <string>
|
||||
#include <base/logging.h>
|
||||
#include <android-base/logging.h>
|
||||
#include <log/log.h>
|
||||
#include "boot_event_record_store.h"
|
||||
#include "event_log_list_builder.h"
|
||||
|
|
|
@ -18,7 +18,7 @@
|
|||
|
||||
#include <cinttypes>
|
||||
#include <string>
|
||||
#include <base/logging.h>
|
||||
#include <android-base/logging.h>
|
||||
#include <log/log.h>
|
||||
|
||||
namespace {
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
#include <cstdint>
|
||||
#include <memory>
|
||||
|
||||
#include <base/macros.h>
|
||||
#include <android-base/macros.h>
|
||||
|
||||
// EventLogListBuilder provides a mechanism to build an EventLog list
|
||||
// consisting of int and string EventLog values.
|
||||
|
|
|
@ -14,7 +14,7 @@
|
|||
* limitations under the License.
|
||||
*/
|
||||
|
||||
#include <base/logging.h>
|
||||
#include <android-base/logging.h>
|
||||
#include <gtest/gtest.h>
|
||||
|
||||
int main(int argc, char** argv) {
|
||||
|
|
Loading…
Reference in a new issue