Title: [90033] trunk/Source/WebKit/qt
- Revision
- 90033
- Author
- [email protected]
- Date
- 2011-06-29 12:18:02 -0700 (Wed, 29 Jun 2011)
Log Message
2011-06-29 Alexis Menard <[email protected]>
Reviewed by Benjamin Poulain.
[Qt] Add Qt dependencies in QtWebKit's main pro file.
https://bugs.webkit.org/show_bug.cgi?id=63639
syncqt, the script which generates the headers inside Qt parses
the main pro file of QtWebKit to check the Qt dependencies. It used
to be WebCore.pro but after the build reorganization QtWebKit.pro is
the new main pro file so we need to add the network dependency just like
we did in WebCore.pro.
* QtWebKit.pro:
Modified Paths
Diff
Modified: trunk/Source/WebKit/qt/ChangeLog (90032 => 90033)
--- trunk/Source/WebKit/qt/ChangeLog 2011-06-29 19:07:19 UTC (rev 90032)
+++ trunk/Source/WebKit/qt/ChangeLog 2011-06-29 19:18:02 UTC (rev 90033)
@@ -1,3 +1,18 @@
+2011-06-29 Alexis Menard <[email protected]>
+
+ Reviewed by Benjamin Poulain.
+
+ [Qt] Add Qt dependencies in QtWebKit's main pro file.
+ https://bugs.webkit.org/show_bug.cgi?id=63639
+
+ syncqt, the script which generates the headers inside Qt parses
+ the main pro file of QtWebKit to check the Qt dependencies. It used
+ to be WebCore.pro but after the build reorganization QtWebKit.pro is
+ the new main pro file so we need to add the network dependency just like
+ we did in WebCore.pro.
+
+ * QtWebKit.pro:
+
2011-06-28 Ilya Sherman <[email protected]>
Reviewed by Adam Barth.
Modified: trunk/Source/WebKit/qt/QtWebKit.pro (90032 => 90033)
--- trunk/Source/WebKit/qt/QtWebKit.pro 2011-06-29 19:07:19 UTC (rev 90032)
+++ trunk/Source/WebKit/qt/QtWebKit.pro 2011-06-29 19:18:02 UTC (rev 90033)
@@ -35,6 +35,11 @@
prependWebCoreLib(../../WebCore)
webkit2:prependWebKit2Lib(../../WebKit2)
+# This is needed for syncqt when it parses the dependencies on module's main pro file so
+# the generated includes are containing the dependencies.
+# It used to be in WebCore.pro but now that this is the main pro file it has to be here.
+QT += network
+
isEmpty(OUTPUT_DIR): OUTPUT_DIR = ../..
contains(QT_CONFIG, embedded):CONFIG += embedded
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes