Use directory qualified #include files

Trac #11408
Signed-off-by: Andrew Lewycky
Signed-off-by: Nicolas Capens

git-svn-id: https://angleproject.googlecode.com/svn/trunk@165 736b8ea6-26fd-11df-bfd4-992fa37f6226
diff --git a/src/compiler/InitializeDll.cpp b/src/compiler/InitializeDll.cpp
index 35a9829..06f8384 100644
--- a/src/compiler/InitializeDll.cpp
+++ b/src/compiler/InitializeDll.cpp
@@ -4,12 +4,13 @@
 // found in the LICENSE file.
 //
 
-#include "InitializeDll.h"
-#include "InitializeGlobals.h"
-#include "InitializeParseContext.h"
+#include "compiler/InitializeDll.h"
 
 #include "GLSLANG/ShaderLang.h"
 
+#include "compiler/InitializeGlobals.h"
+#include "compiler/InitializeParseContext.h"
+
 OS_TLSIndex ThreadInitializeIndex = OS_INVALID_TLS_INDEX;
 
 bool InitProcess()