diff options
author | mark@chromium.org <mark@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-10-07 15:22:37 +0000 |
---|---|---|
committer | mark@chromium.org <mark@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-10-07 15:22:37 +0000 |
commit | dbd9b2a3b3347a6c9f44c6d15c47613ea6b3210f (patch) | |
tree | 7246a2ba46222cc996e9edc8ff271c520a25ae2c /webkit | |
parent | 88b48234591390296cbfd8434e53bc9e75d8c9a2 (diff) | |
download | chromium_src-dbd9b2a3b3347a6c9f44c6d15c47613ea6b3210f.zip chromium_src-dbd9b2a3b3347a6c9f44c6d15c47613ea6b3210f.tar.gz chromium_src-dbd9b2a3b3347a6c9f44c6d15c47613ea6b3210f.tar.bz2 |
Fix #include "WebSystemInterface.h" in TestShell so that we can get back to
not linking.
Review URL: http://codereview.chromium.org/6541
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@2940 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit')
-rw-r--r-- | webkit/tools/test_shell/mac/TestShell.xcodeproj/project.pbxproj | 2 | ||||
-rw-r--r-- | webkit/tools/test_shell/mac/main.mm | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/webkit/tools/test_shell/mac/TestShell.xcodeproj/project.pbxproj b/webkit/tools/test_shell/mac/TestShell.xcodeproj/project.pbxproj index 7274f2a..1ad7c92 100644 --- a/webkit/tools/test_shell/mac/TestShell.xcodeproj/project.pbxproj +++ b/webkit/tools/test_shell/mac/TestShell.xcodeproj/project.pbxproj @@ -1587,6 +1587,7 @@ ../../../../third_party/npapi, ../../../pending, ../../../../third_party/WebKit/WebCore, + ../../../../third_party/WebKit/WebKit/mac/WebCoreSupport, ../../../../third_party/WebKit/JavaScriptCore, "$(SYMROOT)/webkit.build/$(CONFIGURATION)/generated/WebCore/v8", ); @@ -1621,6 +1622,7 @@ ../../../../third_party/npapi, ../../../pending, ../../../../third_party/WebKit/WebCore, + ../../../../third_party/WebKit/WebKit/mac/WebCoreSupport, ../../../../third_party/WebKit/JavaScriptCore, "$(SYMROOT)/webkit.build/$(CONFIGURATION)/generated/WebCore/v8", ); diff --git a/webkit/tools/test_shell/mac/main.mm b/webkit/tools/test_shell/mac/main.mm index 1c36517..552da77 100644 --- a/webkit/tools/test_shell/mac/main.mm +++ b/webkit/tools/test_shell/mac/main.mm @@ -22,7 +22,7 @@ #include "webkit/tools/test_shell/test_shell.h" #include "webkit/tools/test_shell/test_shell_switches.h" -#include "webkit/tools/test_shell/mac/temp/WebSystemInterface.h" +#include "WebSystemInterface.h" static char g_currentTestName[PATH_MAX]; |