summaryrefslogtreecommitdiffstats
path: root/Tools/DumpRenderTree/qt/TestNetscapePlugin/TestNetscapePlugin.pro
blob: 6f96d0ad1663c2e5d7b0bac5506966da455201ed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
TEMPLATE = lib
TARGET = TestNetscapePlugIn

VPATH = ../../unix/TestNetscapePlugin ../../TestNetscapePlugIn
isEmpty(OUTPUT_DIR): OUTPUT_DIR = ../../../..
include(../../../../WebKit.pri)

DESTDIR = $$OUTPUT_DIR/lib/plugins

mac {
    CONFIG += plugin
    CONFIG += plugin_bundle
    QMAKE_INFO_PLIST = ../../TestNetscapePlugIn/mac/Info.plist
    QMAKE_PLUGIN_BUNDLE_NAME = $$TARGET
    QMAKE_BUNDLE_LOCATION += "Contents/MacOS"

    !build_pass:CONFIG += build_all
    debug_and_release:TARGET = $$qtLibraryTarget($$TARGET)
}

INCLUDEPATH += ../../../../Source/JavaScriptCore \
               ../../unix/TestNetscapePlugin/ForwardingHeaders \
               ../../unix/TestNetscapePlugin/ForwardingHeaders/WebKit \
               ../../../../Source/WebCore \
               ../../../../Source/WebCore/bridge \
               ../../TestNetscapePlugIn

SOURCES = PluginObject.cpp \
          PluginTest.cpp \
          TestObject.cpp \
          Tests/DocumentOpenInDestroyStream.cpp \
          Tests/EvaluateJSAfterRemovingPluginElement.cpp \
          Tests/GetUserAgentWithNullNPPFromNPPNew.cpp \
          Tests/NPRuntimeObjectFromDestroyedPlugin.cpp \
          Tests/NPRuntimeRemoveProperty.cpp \
          Tests/NullNPPGetValuePointer.cpp \
          Tests/PassDifferentNPPStruct.cpp \
          Tests/PluginScriptableNPObjectInvokeDefault.cpp

mac {
    SOURCES += ../../TestNetscapePlugIn/main.cpp
    OBJECTIVE_SOURCES += PluginObjectMac.mm
    LIBS += -framework Carbon -framework Cocoa -framework QuartzCore
} else {
    SOURCES += ../../unix/TestNetscapePlugin/TestNetscapePlugin.cpp
}

!win32:!embedded:!mac:!symbian {
    LIBS += -lX11
}