Move private headers out of /include folder
1. The /include folder is exported by export_include_dirs attribute. The
headers for internal use should be moved to another place.
2. Remove unnecessary #inlcude from public headers. So we can have a
compact .lsdump for ABI checker.
Bug: 144407448
Test: atest
Change-Id: I5bb0df02a1ccb70f0e91f4b77668ce54e0127f62
diff --git a/resolv_cache_unit_test.cpp b/resolv_cache_unit_test.cpp
index 997a58a..454222b 100644
--- a/resolv_cache_unit_test.cpp
+++ b/resolv_cache_unit_test.cpp
@@ -29,10 +29,10 @@
#include <gmock/gmock-matchers.h>
#include <gtest/gtest.h>
-#include "netd_resolv/stats.h"
#include "res_init.h"
#include "resolv_cache.h"
#include "resolv_private.h"
+#include "stats.h"
#include "tests/dns_responder/dns_responder.h"
using namespace std::chrono_literals;