Changeset 90033 in webkit


Ignore:
Timestamp:
Jun 29, 2011 12:18:02 PM (13 years ago)
Author:
alexis.menard@openbossa.org
Message:

2011-06-29 Alexis Menard <alexis.menard@openbossa.org>

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.

Location:
trunk/Source/WebKit/qt
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/qt/ChangeLog

    r89991 r90033  
     12011-06-29  Alexis Menard  <alexis.menard@openbossa.org>
     2
     3        Reviewed by Benjamin Poulain.
     4
     5        [Qt] Add Qt dependencies in QtWebKit's main pro file.
     6        https://bugs.webkit.org/show_bug.cgi?id=63639
     7
     8        syncqt, the script which generates the headers inside Qt parses
     9        the main pro file of QtWebKit to check the Qt dependencies. It used
     10        to be WebCore.pro but after the build reorganization QtWebKit.pro is
     11        the new main pro file so we need to add the network dependency just like
     12        we did in WebCore.pro.
     13
     14        * QtWebKit.pro:
     15
    1162011-06-28  Ilya Sherman  <isherman@chromium.org>
    217
  • trunk/Source/WebKit/qt/QtWebKit.pro

    r89617 r90033  
    3535prependWebCoreLib(../../WebCore)
    3636webkit2:prependWebKit2Lib(../../WebKit2)
     37
     38# This is needed for syncqt when it parses the dependencies on module's main pro file so
     39# the generated includes are containing the dependencies.
     40# It used to be in WebCore.pro but now that this is the main pro file it has to be here.
     41QT += network
    3742
    3843isEmpty(OUTPUT_DIR): OUTPUT_DIR = ../..
Note: See TracChangeset for help on using the changeset viewer.