| OLD | NEW |
| 1 # WebCore - qmake build info | 1 # WebCore - qmake build info |
| 2 CONFIG += building-libs | 2 CONFIG += building-libs |
| 3 CONFIG += depend_includepath | 3 CONFIG += depend_includepath |
| 4 include($$PWD/../WebKit.pri) | 4 include($$PWD/../WebKit.pri) |
| 5 | 5 |
| 6 TEMPLATE = lib | 6 TEMPLATE = lib |
| 7 TARGET = QtWebKit | 7 TARGET = QtWebKit |
| 8 | 8 |
| 9 contains(QT_CONFIG, embedded):CONFIG += embedded | 9 contains(QT_CONFIG, embedded):CONFIG += embedded |
| 10 | 10 |
| (...skipping 475 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 486 bindings/js/JSMessageChannelCustom.cpp \ | 486 bindings/js/JSMessageChannelCustom.cpp \ |
| 487 bindings/js/JSMessagePortCustom.cpp \ | 487 bindings/js/JSMessagePortCustom.cpp \ |
| 488 bindings/js/JSMimeTypeArrayCustom.cpp \ | 488 bindings/js/JSMimeTypeArrayCustom.cpp \ |
| 489 bindings/js/JSDOMBinding.cpp \ | 489 bindings/js/JSDOMBinding.cpp \ |
| 490 bindings/js/JSEventListener.cpp \ | 490 bindings/js/JSEventListener.cpp \ |
| 491 bindings/js/JSPluginElementFunctions.cpp \ | 491 bindings/js/JSPluginElementFunctions.cpp \ |
| 492 bindings/js/ScriptCachedFrameData.cpp \ | 492 bindings/js/ScriptCachedFrameData.cpp \ |
| 493 bindings/js/ScriptCallFrame.cpp \ | 493 bindings/js/ScriptCallFrame.cpp \ |
| 494 bindings/js/ScriptCallStack.cpp \ | 494 bindings/js/ScriptCallStack.cpp \ |
| 495 bindings/js/ScriptController.cpp \ | 495 bindings/js/ScriptController.cpp \ |
| 496 bindings/js/ScriptFunctionCall.cpp \ |
| 497 bindings/js/ScriptObject.cpp \ |
| 498 bindings/js/ScriptObjectQuarantine.cpp \ |
| 496 bindings/js/ScriptValue.cpp \ | 499 bindings/js/ScriptValue.cpp \ |
| 497 bindings/js/ScheduledAction.cpp \ | 500 bindings/js/ScheduledAction.cpp \ |
| 498 bridge/IdentifierRep.cpp \ | 501 bridge/IdentifierRep.cpp \ |
| 499 bridge/NP_jsobject.cpp \ | 502 bridge/NP_jsobject.cpp \ |
| 500 bridge/npruntime.cpp \ | 503 bridge/npruntime.cpp \ |
| 501 bridge/runtime_array.cpp \ | 504 bridge/runtime_array.cpp \ |
| 502 bridge/runtime.cpp \ | 505 bridge/runtime.cpp \ |
| 503 bridge/runtime_method.cpp \ | 506 bridge/runtime_method.cpp \ |
| 504 bridge/runtime_object.cpp \ | 507 bridge/runtime_object.cpp \ |
| 505 bridge/runtime_root.cpp \ | 508 bridge/runtime_root.cpp \ |
| (...skipping 1572 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2078 QMAKE_PKGCONFIG_INSTALL_REPLACE += lib_replace | 2081 QMAKE_PKGCONFIG_INSTALL_REPLACE += lib_replace |
| 2079 } | 2082 } |
| 2080 } | 2083 } |
| 2081 | 2084 |
| 2082 CONFIG(QTDIR_build):isEqual(QT_MAJOR_VERSION, 4):greaterThan(QT_MINOR_VERSION, 4
) { | 2085 CONFIG(QTDIR_build):isEqual(QT_MAJOR_VERSION, 4):greaterThan(QT_MINOR_VERSION, 4
) { |
| 2083 # start with 4.5 | 2086 # start with 4.5 |
| 2084 CONFIG -= separate_debug_info | 2087 CONFIG -= separate_debug_info |
| 2085 CONFIG += no_debug_info | 2088 CONFIG += no_debug_info |
| 2086 } | 2089 } |
| 2087 | 2090 |
| OLD | NEW |