Fixed compile error for preprocessor tests.
Review URL: https://codereview.appspot.com/7388051

git-svn-id: https://angleproject.googlecode.com/svn/branches/dx11proto@1989 736b8ea6-26fd-11df-bfd4-992fa37f6226
diff --git a/tests/build_tests.gyp b/tests/build_tests.gyp
index 32391ad..7927f05 100644
--- a/tests/build_tests.gyp
+++ b/tests/build_tests.gyp
@@ -36,7 +36,7 @@
         'gmock',
       ],
       'include_dirs': [
-        '../src/compiler/preprocessor/new',
+        '../src/compiler/preprocessor',
         '../third_party/googletest/include',
         '../third_party/googlemock/include',
       ],
diff --git a/tests/preprocessor_tests/MockDiagnostics.h b/tests/preprocessor_tests/MockDiagnostics.h
index 4598003..1fcedb4 100644
--- a/tests/preprocessor_tests/MockDiagnostics.h
+++ b/tests/preprocessor_tests/MockDiagnostics.h
@@ -8,7 +8,7 @@
 #define PREPROCESSOR_TESTS_MOCK_DIAGNOSTICS_H_
 
 #include "gmock/gmock.h"
-#include "Diagnostics.h"
+#include "DiagnosticsBase.h"
 
 class MockDiagnostics : public pp::Diagnostics
 {
diff --git a/tests/preprocessor_tests/MockDirectiveHandler.h b/tests/preprocessor_tests/MockDirectiveHandler.h
index 68c05e2..f2893fd 100644
--- a/tests/preprocessor_tests/MockDirectiveHandler.h
+++ b/tests/preprocessor_tests/MockDirectiveHandler.h
@@ -8,7 +8,7 @@
 #define PREPROCESSOR_TESTS_MOCK_DIRECTIVE_HANDLER_H_
 
 #include "gmock/gmock.h"
-#include "DirectiveHandler.h"
+#include "DirectiveHandlerBase.h"
 
 class MockDirectiveHandler : public pp::DirectiveHandler
 {