Title: [131906] trunk/Source/WebKit/chromium
Revision
131906
Author
joc...@chromium.org
Date
2012-10-19 09:37:23 -0700 (Fri, 19 Oct 2012)

Log Message

[chromium] Fix inside chromium build on Mac

Unreviewed build fix.

Xcode won't create a static library without any sources. So instead of
ommitting the sources, just override the webkit_test_support's type
with 'none'.

* WebKit.gyp:

Modified Paths

Diff

Modified: trunk/Source/WebKit/chromium/ChangeLog (131905 => 131906)


--- trunk/Source/WebKit/chromium/ChangeLog	2012-10-19 16:24:43 UTC (rev 131905)
+++ trunk/Source/WebKit/chromium/ChangeLog	2012-10-19 16:37:23 UTC (rev 131906)
@@ -1,3 +1,15 @@
+2012-10-19  Jochen Eisinger  <joc...@chromium.org>
+
+        [chromium] Fix inside chromium build on Mac
+
+        Unreviewed build fix.
+
+        Xcode won't create a static library without any sources. So instead of
+        ommitting the sources, just override the webkit_test_support's type
+        with 'none'.
+
+        * WebKit.gyp:
+
 2012-10-17  Ilya Tikhonovsky  <loi...@chromium.org>
 
         Web Inspector: NMI provide data for mixing with tcmalloc heap dumps.

Modified: trunk/Source/WebKit/chromium/WebKit.gyp (131905 => 131906)


--- trunk/Source/WebKit/chromium/WebKit.gyp	2012-10-19 16:24:43 UTC (rev 131905)
+++ trunk/Source/WebKit/chromium/WebKit.gyp	2012-10-19 16:37:23 UTC (rev 131906)
@@ -874,12 +874,13 @@
                 'public',
                 '../../WebCore/testing/v8', # for WebCoreTestSupport.h, needed to link in window.internals code.
             ],
+            'sources': [
+                'src/WebTestingSupport.cpp',
+                'public/WebTestingSupport.h',
+            ],
             'conditions': [
                 ['inside_chromium_build==0 or component!="shared_library"', {
-                    'sources': [
-                        'src/WebTestingSupport.cpp',
-                        'public/WebTestingSupport.h',
-                    ],
+                    'type': 'none',
                 }],
             ],
         },
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to