Changeset 121302 in webkit
- Timestamp:
- Jun 26, 2012, 4:54:46 PM (13 years ago)
- Location:
- trunk/Tools
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Tools/BuildSlaveSupport/build.webkit.org-config/master.cfg
r121263 r121302 308 308 platform = self.getProperty('platform') 309 309 appendCustomBuildFlags(self, platform, self.getProperty('fullPlatform')) 310 if platform.startswith('mac'): 311 self.setCommand(self.command + ['--no-build']) 310 312 if platform == "win": 311 313 rootArgument = ['--root=' + os.path.join("WebKitBuild", self.getProperty('configuration'), "bin")] 314 self.setCommand(self.command + ['--no-build']) 312 315 else: 313 316 rootArgument = ['--root=WebKitBuild/bin'] … … 418 421 platform = self.getProperty('platform') 419 422 if platform == 'win': 423 self.setCommand(self.command + ['--no-build']) 424 if platform.startswith('mac'): 420 425 self.setCommand(self.command + ['--no-build']) 421 426 if platform.startswith('chromium'): -
trunk/Tools/ChangeLog
r121301 r121302 1 2012-06-26 Lucas Forschler <lforschler@apple.com> 2 3 Teach the Apple port how to build the test tools in build-webkit 4 https://bugs.webkit.org/show_bug.cgi?id=89540 5 6 Reviewed by Jon Lee & Simon Fraser. 7 8 * BuildSlaveSupport/build.webkit.org-config/master.cfg: 9 (RunWebKitTests.start): pass --no-build since tools should now be in the downloaded archive 10 (RunUnitTests.start): ditto 11 * Scripts/build-webkit: add tools to the projects build list 12 1 13 2012-06-26 Ojan Vafai <ojan@chromium.org> 2 14 -
trunk/Tools/Scripts/build-webkit
r120060 r121302 247 247 push @projects, ("Source/WebKit2", "Tools/MiniBrowser") if osXVersion()->{"minor"} >= 6 and !$noWebKit2; 248 248 249 # Build Tools needed for Apple ports 250 push @projects, ("Tools/DumpRenderTree", "Tools/WebKitTestRunner", "Source/ThirdParty/gtest", "Tools/TestWebKitAPI"); 251 249 252 # Copy library and header from WebKitLibraries to a findable place in the product directory. 250 253 (system("perl", "Tools/Scripts/copy-webkitlibraries-to-product-directory", $productDir) == 0) or die; … … 376 379 my $useGYPProject = $useGYP && ($project =~ "WebCore|JavaScriptCore"); 377 380 my $projectPath = $useGYPProject ? "gyp/$project" : $project; 381 $projectPath = $project =~ /gtest/ ? "xcode/gtest" : $project; 378 382 $result = buildXCodeProject($projectPath, $clean, @local_options, @ARGV); 379 383 } elsif (isAppleWinWebKit()) {
Note:
See TracChangeset
for help on using the changeset viewer.