Moved Debug GL interface to src/gpu/gl/debug in preparation for splitting it up.

http://codereview.appspot.com/5938054/



git-svn-id: http://skia.googlecode.com/svn/trunk@3526 2bbb7eff-a529-9590-31e7-b0007b416f81
diff --git a/gyp/gpu.gyp b/gyp/gpu.gyp
index db506d7..416d0e3 100644
--- a/gyp/gpu.gyp
+++ b/gyp/gpu.gyp
@@ -112,7 +112,8 @@
 
         '../src/gpu/gl/SkGLContext.cpp',
         '../src/gpu/gl/SkNullGLContext.cpp',
-        '../src/gpu/gl/SkDebugGLContext.cpp',
+
+        '../src/gpu/gl/debug/SkDebugGLContext.cpp',
 
         '../src/gpu/android/SkNativeGLContext_android.cpp',
 
@@ -253,7 +254,6 @@
         '../src/gpu/gl/GrGLContextInfo.h',
         '../src/gpu/gl/GrGLCreateNativeInterface_none.cpp',
         '../src/gpu/gl/GrGLCreateNullInterface.cpp',
-        '../src/gpu/gl/GrGLCreateDebugInterface.cpp',
         '../src/gpu/gl/GrGLDefaultInterface_none.cpp',
         '../src/gpu/gl/GrGLDefaultInterface_native.cpp',
         '../src/gpu/gl/GrGLIndexBuffer.cpp',
@@ -279,6 +279,8 @@
         '../src/gpu/gl/GrGpuGLShaders.cpp',
         '../src/gpu/gl/GrGpuGLShaders.h',
 
+        '../src/gpu/gl/debug/GrGLCreateDebugInterface.cpp',
+
         '../src/gpu/mac/GrGLCreateNativeInterface_mac.cpp',
 
         '../src/gpu/win/GrGLCreateNativeInterface_win.cpp',
diff --git a/src/gpu/gl/GrGLCreateDebugInterface.cpp b/src/gpu/gl/debug/GrGLCreateDebugInterface.cpp
similarity index 100%
rename from src/gpu/gl/GrGLCreateDebugInterface.cpp
rename to src/gpu/gl/debug/GrGLCreateDebugInterface.cpp
diff --git a/src/gpu/gl/SkDebugGLContext.cpp b/src/gpu/gl/debug/SkDebugGLContext.cpp
similarity index 100%
rename from src/gpu/gl/SkDebugGLContext.cpp
rename to src/gpu/gl/debug/SkDebugGLContext.cpp