Title: [156493] trunk/Tools
Revision
156493
Author
[email protected]
Date
2013-09-26 13:54:06 -0700 (Thu, 26 Sep 2013)

Log Message

build-webkit --inspector-frontend should copy WebInspectorUI files
https://bugs.webkit.org/show_bug.cgi?id=117851

Patch by Brian J. Burg <[email protected]> on 2013-09-26
Reviewed by Joseph Pecoraro.

Change the --inspector-frontend build option to additionally build/copy
WebInspectorUI by setting it as the only project that needs to be built.

* Scripts/build-webkit:

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (156492 => 156493)


--- trunk/Tools/ChangeLog	2013-09-26 20:44:02 UTC (rev 156492)
+++ trunk/Tools/ChangeLog	2013-09-26 20:54:06 UTC (rev 156493)
@@ -1,3 +1,15 @@
+2013-09-26  Brian J. Burg  <[email protected]>
+
+        build-webkit --inspector-frontend should copy WebInspectorUI files
+        https://bugs.webkit.org/show_bug.cgi?id=117851
+
+        Reviewed by Joseph Pecoraro.
+
+        Change the --inspector-frontend build option to additionally build/copy 
+        WebInspectorUI by setting it as the only project that needs to be built.
+
+        * Scripts/build-webkit:
+
 2013-09-26  Zan Dobersek  <[email protected]>
 
         XvfbDriver should set up Xvfb instances providing screens of 8-bit depth

Modified: trunk/Tools/Scripts/build-webkit (156492 => 156493)


--- trunk/Tools/Scripts/build-webkit	2013-09-26 20:44:02 UTC (rev 156492)
+++ trunk/Tools/Scripts/build-webkit	2013-09-26 20:54:06 UTC (rev 156493)
@@ -270,12 +270,14 @@
 # build options, etc.
 @projects = ("Source/WebKit") if $onlyWebKitProject;
 
+my $result = 0;
+
 if (isInspectorFrontend()) {
-    exit exitStatus(copyInspectorFrontendFiles());
+    $result = copyInspectorFrontendFiles();
+    exit exitStatus($result) if exitStatus($result);
+    @projects = ("Source/WebInspectorUI");
 }
 
-my $result = 0;
-
 if (isEfl()) {
     # By default we build using all of the available CPUs.
     $makeArgs .= ($makeArgs ? " " : "") . "-j" . numberOfCPUs() if $makeArgs !~ /-j\s*\d+/;
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to