Revert "hide Config8888 entirely". Broke a bunch of builds.

This reverts commit fa11c49cc11a6c9ebafbf9c59e118917f9b3cc56.

Revert "Sanitizing source files in Housekeeper-Nightly" to make the above revert clean.

This reverts commit b5787422c8eb2a27a9576777597fd9e06784acdb.

TBR=reed@google.com
TBR=jcgregorio@google.com

Review URL: https://codereview.chromium.org/205963003

git-svn-id: http://skia.googlecode.com/svn/trunk@13872 2bbb7eff-a529-9590-31e7-b0007b416f81
diff --git a/tests/SurfaceTest.cpp b/tests/SurfaceTest.cpp
index 705ea14..c0839a5 100644
--- a/tests/SurfaceTest.cpp
+++ b/tests/SurfaceTest.cpp
@@ -324,13 +324,13 @@
     REPORTER_ASSERT(reporter, expectedCachedResources == context->getGpuTextureCacheResourceCount());
 
     // Verify that all the cached resources are locked in cache.
-    context->freeGpuResources();
+    context->freeGpuResources(); 
     REPORTER_ASSERT(reporter, expectedCachedResources == context->getGpuTextureCacheResourceCount());
 
     // Verify that all the cached resources are unlocked upon surface release
     surface.reset(0);
     context->freeGpuResources();
-    REPORTER_ASSERT(reporter, 0 == context->getGpuTextureCacheResourceCount());
+    REPORTER_ASSERT(reporter, 0 == context->getGpuTextureCacheResourceCount()); 
 }
 
 static void Test_crbug263329(skiatest::Reporter* reporter,