summaryrefslogtreecommitdiffstats
path: root/WebKitTools/Scripts/build-dumprendertree
diff options
context:
space:
mode:
Diffstat (limited to 'WebKitTools/Scripts/build-dumprendertree')
-rwxr-xr-xWebKitTools/Scripts/build-dumprendertree15
1 files changed, 2 insertions, 13 deletions
diff --git a/WebKitTools/Scripts/build-dumprendertree b/WebKitTools/Scripts/build-dumprendertree
index 6502916..87c720f 100755
--- a/WebKitTools/Scripts/build-dumprendertree
+++ b/WebKitTools/Scripts/build-dumprendertree
@@ -70,20 +70,9 @@ if (isAppleMacWebKit()) {
$result = buildXCodeProject("DumpRenderTree", $clean, XcodeOptions(), @ARGV);
} elsif (isAppleWinWebKit()) {
$result = buildVisualStudioProject("DumpRenderTree.sln", $clean);
-} elsif (isQt() || isGtk() || isWx()) {
- # Qt, Gtk and wxWindows build everything in one shot. No need to build anything here.
+} elsif (isQt() || isGtk() || isWx() || isChromium()) {
+ # Qt, Gtk wxWindows, and Chromium build everything in one shot. No need to build anything here.
$result = 0;
-} elsif (isChromium()) {
- if (isDarwin()) {
- $result = buildXCodeProject("DumpRenderTree.gyp/DumpRenderTree", $clean, "-configuration", configuration(), @ARGV);
- } elsif (isCygwin() || isWindows()) {
- # Windows build - builds the root visual studio solution.
- $result = buildChromiumVisualStudioProject("DumpRenderTree.gyp/DumpRenderTree.sln", $clean);
- } elsif (isLinux()) {
- $result = buildChromiumMakefile("../../WebKit/chromium/", "DumpRenderTree", $clean);
- } else {
- die "This platform is not supported by Chromium.\n";
- }
} else {
die "Building not defined for this platform!\n";
}