Changeset 57198 in webkit


Ignore:
Timestamp:
Apr 7, 2010 1:15:43 AM (14 years ago)
Author:
eric@webkit.org
Message:

2010-04-07 Laszlo Gombos <Laszlo Gombos>

Reviewed by Kenneth Rohde Christiansen.

[Qt] Fix trunk (non-standalone) builds for Symbian
https://bugs.webkit.org/show_bug.cgi?id=37136

Test for source files before building instead of relying on
standalone_package config.

  • WebKit.pro:
Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/ChangeLog

    r56968 r57198  
     12010-04-07  Laszlo Gombos  <laszlo.1.gombos@nokia.com>
     2
     3        Reviewed by Kenneth Rohde Christiansen.
     4
     5        [Qt] Fix trunk (non-standalone) builds for Symbian
     6        https://bugs.webkit.org/show_bug.cgi?id=37136
     7
     8        Test for source files before building instead of relying on
     9        standalone_package config.
     10
     11        * WebKit.pro:
     12
    1132010-04-01  Kinuko Yasuda  <kinuko@chromium.org>
    214
  • trunk/WebKit.pro

    r56623 r57198  
    66SUBDIRS += \
    77        JavaScriptCore \
    8         WebCore \
    9         WebKitTools/QtLauncher
     8        WebCore
    109
    11 !CONFIG(standalone_package) {
    12     SUBDIRS += JavaScriptCore/jsc.pro \
    13         WebKit/qt/tests \
    14         WebKitTools/DumpRenderTree/qt/DumpRenderTree.pro
     10# If the source exists, built it
     11exists($$PWD/WebKitTools/QtLauncher): SUBDIRS += WebKitTools/QtLauncher
     12exists($$PWD/JavaScriptCore/jsc.pro): SUBDIRS += JavaScriptCore/jsc.pro
     13exists($$PWD/WebKit/qt/tests): SUBDIRS += WebKit/qt/tests
     14exists($$PWD/WebKitTools/DumpRenderTree/qt/DumpRenderTree.pro): SUBDIRS += WebKitTools/DumpRenderTree/qt/DumpRenderTree.pro
    1515
    16     !win32:!symbian {
    17         SUBDIRS += WebKitTools/DumpRenderTree/qt/ImageDiff.pro
    18         SUBDIRS += WebKitTools/DumpRenderTree/qt/TestNetscapePlugin/TestNetscapePlugin.pro
    19     }
    20 
     16!win32:!symbian {
     17    exists($$PWD/WebKitTools/DumpRenderTree/qt/ImageDiff.pro): SUBDIRS += WebKitTools/DumpRenderTree/qt/ImageDiff.pro
     18    exists($$PWD/WebKitTools/DumpRenderTree/qt/TestNetscapePlugin/TestNetscapePlugin.pro): SUBDIRS += WebKitTools/DumpRenderTree/qt/TestNetscapePlugin/TestNetscapePlugin.pro
    2119}
    2220
Note: See TracChangeset for help on using the changeset viewer.