Home
last modified time | relevance | path

Searched refs:productDir (Results 1 – 22 of 22) sorted by relevance

/external/webkit/Tools/Scripts/
Dwebkitdirs.pm46 …@EXPORT = qw(&chdirWebKit &baseProductDir &productDir &XcodeOptions &XcodeOptionString &Xcode…
265 my ($productDir) = @_;
269 return "$productDir/$jscName" if -e "$productDir/$jscName";
270 return "$productDir/JavaScriptCore.framework/Resources/$jscName";
360 sub productDir subroutine
368 my $productDir = productDir();
369 $productDir .= "/JavaScriptCore" if isQt();
370 $productDir .= "/$configuration" if (isQt() && isWindows());
371 $productDir .= "/Programs" if (isGtk() || isEfl());
373 return $productDir;
[all …]
Dsunspider-compare-results84 my ($productDir) = @_;
85 …r-compare-results with DYLD_FRAMEWORK_PATH set to point to built JavaScriptCore in $productDir.\n";
86 $ENV{DYLD_FRAMEWORK_PATH} = $productDir;
92 my ($productDir) = @_;
95 return "$productDir/$jscName";
114 my $productDir = jscProductDir();
116 setupEnvironmentForExecution($productDir);
117 return pathToBuiltJSC($productDir);
Drun-javascriptcore-tests103 my $productDir = jscProductDir();
104 $ENV{DYLD_FRAMEWORK_PATH} = $productDir;
109 my ($productDir) = @_;
112 return "$productDir/$jscName";
118 chdir($productDir) or die;
119 my $path = testapiPath($productDir);
130 printf "Running: jsDriver.pl -e squirrelfish -s %s -f actual.html %s\n", jscPath($productDir), join…
131 my $result = system "perl", "jsDriver.pl", "-e", "squirrelfish", "-s", jscPath($productDir), "-f", …
Drun-api-tests131 my $productDir = productDir();
132 $ENV{DYLD_FRAMEWORK_PATH} = $productDir;
134 my $apiTesterPath = "$productDir/TestWebKitAPI";
168 … my $apiTesterPath = File::Spec->catfile(productDir(), "TestWebKitAPI$apiTesterNameSuffix.exe");
186 my $productDir = productDir();
187 $ENV{DYLD_FRAMEWORK_PATH} = $productDir;
189 my $apiTesterPath = "$productDir/TestWebKitAPI";
227 … my $apiTesterPath = File::Spec->catfile(productDir(), "TestWebKitAPI$apiTesterNameSuffix.exe");
Drun-launcher40 my $productDir = productDir();
41 my $launcherPath = productDir();
49 my $libDir = catdir(productDir(), 'lib');
79 … $ENV{LD_LIBRARY_PATH} = $ENV{LD_LIBRARY_PATH} ? "$productDir:$ENV{LD_LIBRARY_PATH}" : $productDir;
Drun-sunspider106 my ($productDir) = @_;
107 …tarting sunspider with DYLD_FRAMEWORK_PATH set to point to built JavaScriptCore in $productDir.\n";
108 $ENV{DYLD_FRAMEWORK_PATH} = $productDir;
119 my $productDir = jscProductDir();
121 setupEnvironmentForExecution($productDir);
122 my @args = ("--shell", jscPath($productDir), "--runs", $testRuns);
Drun-webkit-app37 my $productDir = productDir();
45 print "Start $ARGV[0] with DYLD_FRAMEWORK_PATH set to point to built WebKit in $productDir.\n";
46 $ENV{DYLD_FRAMEWORK_PATH} = $productDir;
Drun-gtk-tests30 my $productDir = productDir();
31 my @unitTests = glob $productDir . "/Programs/unittests/*";
33 die "ERROR: tests not found in $productDir.\n";
Dgdb-safari38 my $productDir = productDir();
48 $ENV{DYLD_FRAMEWORK_PATH} = $productDir;
51 …Starting Safari under gdb with DYLD_FRAMEWORK_PATH set to point to built WebKit in $productDir.\n";
Drun-pageloadtest80 my $productDir = productDir();
83 print "Starting Safari with DYLD_FRAMEWORK_PATH set to point to built WebKit in $productDir.\n";
84 $ENV{DYLD_FRAMEWORK_PATH} = $productDir;
Dbuild-webkit405 my $productDir = productDir();
409 …d::name if $File::Find::name =~ m/Makefile/;}, $productDir) if (isQt() && !isSymbian() && -e $prod…
412 File::Find::find(\&unlinkZeroFiles, $productDir) if (isQt() && !isSymbian() && -e $productDir);
488 my $lib = "$productDir/" . $libName;
498 my $header = "$productDir/usr/local/include/WebKitSystemInterface.h";
501 system "mkdir", "-p", "$productDir/usr/local/include";
506 my $headerDir = "$productDir/WebCoreSQLite3";
Drun-webkit-httpd70 my $productDir = productDir();
Drun-iexploder-tests61 my $productDir = productDir();
Drun-mangleme-tests60 my $productDir = productDir();
Dmake-script-test-wrappers56 my $productDir = productDir();
Dwebkit-build-directory68 print productDir() . "\n";
Dold-run-webkit-tests414 my $productDir = productDir();
415 $productDir .= "/bin" if isQt();
416 $productDir .= "/Programs" if isGtk();
437 my $dumpTool = File::Spec->catfile($productDir, $dumpToolName);
438 die "can't find executable $dumpToolName (looked in $productDir)\n" unless -x $dumpTool;
440 my $imageDiffTool = "$productDir/ImageDiff";
443 die "can't find executable $imageDiffTool (looked in $productDir)\n" if $pixelTests && !-x $imageDi…
448 push @INC, $productDir;
1506 $CLEAN_ENV{DYLD_FRAMEWORK_PATH} = $productDir;
1519 $CLEAN_ENV{WEBKIT_INSPECTOR_PATH} = "$productDir/resources/inspector";
[all …]
/external/webkit/Tools/BuildSlaveSupport/
Dbuild-launcher-dmg40 my $nightlyLauncherStagingPath = productDir() . "/WebKit.app";
41 my $droseraStagingPath = productDir() . "/DroseraLauncher.app";
51 my $productDir = productDir();
52 $nightlyLauncherDiskImagePath = productDir() . "/WebKit-SVN-r$revision.dmg";
Dbuild-launcher-app40 my $nightlyLauncherStagingPath = productDir() . "/WebKit.app";
109 …system("ditto", productDir() . "/$framework.framework", "$nightlyLauncherStagingPath/Contents/Reso…
/external/webkit/Tools/
DChangeLog-2009-06-161734 Add /Programs to the productDir for GTK+, instead of adding
25064 … thing for 2.0 and 2.1. Change the productDir function to return the appropriate per-configuration
25183 …* Scripts/build-webkit: Chop newline off of $productDir to avoid problems with logic to copy files…
DChangeLog-2011-02-1641 * Scripts/build-webkit: Remove Qt makefiles from productDir before build.
5474 [Qt] [Symbian] Do not remove 0 byte sized files from productDir
5476 On Symbian productDir points to the source directory. Removing all the
5477 empty files from the productDir directory corrupts the svn repository.
DChangeLog-2010-05-241423 * Scripts/build-webkit: Remove 0 byte sized files from productDir before build.