Title: [131911] trunk/Source/WebKit/chromium
Revision
131911
Author
[email protected]
Date
2012-10-19 10:08:10 -0700 (Fri, 19 Oct 2012)

Log Message

[chromium] fix the fix

Unreviewed build fix.

Forgot to invert the condition when to set the type to none in the
previous attempt.

* WebKit.gyp:

Modified Paths

Diff

Modified: trunk/Source/WebKit/chromium/ChangeLog (131910 => 131911)


--- trunk/Source/WebKit/chromium/ChangeLog	2012-10-19 16:56:24 UTC (rev 131910)
+++ trunk/Source/WebKit/chromium/ChangeLog	2012-10-19 17:08:10 UTC (rev 131911)
@@ -1,5 +1,16 @@
 2012-10-19  Jochen Eisinger  <[email protected]>
 
+        [chromium] fix the fix
+
+        Unreviewed build fix.
+
+        Forgot to invert the condition when to set the type to none in the
+        previous attempt.
+
+        * WebKit.gyp:
+
+2012-10-19  Jochen Eisinger  <[email protected]>
+
         [chromium] Fix inside chromium build on Mac
 
         Unreviewed build fix.

Modified: trunk/Source/WebKit/chromium/WebKit.gyp (131910 => 131911)


--- trunk/Source/WebKit/chromium/WebKit.gyp	2012-10-19 16:56:24 UTC (rev 131910)
+++ trunk/Source/WebKit/chromium/WebKit.gyp	2012-10-19 17:08:10 UTC (rev 131911)
@@ -879,7 +879,7 @@
                 'public/WebTestingSupport.h',
             ],
             'conditions': [
-                ['inside_chromium_build==0 or component!="shared_library"', {
+                ['inside_chromium_build==1 and component=="shared_library"', {
                     'type': 'none',
                 }],
             ],
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to