| OLD | NEW |
| 1 # ------------------------------------------------------------------- | 1 # ------------------------------------------------------------------- |
| 2 # Target file for the WebCore library | 2 # Target file for the WebCore library |
| 3 # | 3 # |
| 4 # See 'Tools/qmake/README' for an overview of the build system | 4 # See 'Tools/qmake/README' for an overview of the build system |
| 5 # ------------------------------------------------------------------- | 5 # ------------------------------------------------------------------- |
| 6 | 6 |
| 7 TEMPLATE = lib | 7 TEMPLATE = lib |
| 8 TARGET = WebCore | 8 TARGET = WebCore |
| 9 | 9 |
| 10 include(WebCore.pri) | 10 include(WebCore.pri) |
| (...skipping 3010 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3021 SOURCES += \ | 3021 SOURCES += \ |
| 3022 bindings/js/JSDirectoryEntryCustom.cpp \ | 3022 bindings/js/JSDirectoryEntryCustom.cpp \ |
| 3023 bindings/js/JSDirectoryEntrySyncCustom.cpp \ | 3023 bindings/js/JSDirectoryEntrySyncCustom.cpp \ |
| 3024 bindings/js/JSEntryCustom.cpp \ | 3024 bindings/js/JSEntryCustom.cpp \ |
| 3025 bindings/js/JSEntrySyncCustom.cpp \ | 3025 bindings/js/JSEntrySyncCustom.cpp \ |
| 3026 platform/AsyncFileSystem.cpp | 3026 platform/AsyncFileSystem.cpp |
| 3027 } | 3027 } |
| 3028 | 3028 |
| 3029 contains(DEFINES, ENABLE_MEDIA_SOURCE=1) { | 3029 contains(DEFINES, ENABLE_MEDIA_SOURCE=1) { |
| 3030 HEADERS += \ | 3030 HEADERS += \ |
| 3031 Modules/mediasource/MediaSource.h \ | |
| 3032 Modules/mediasource/MediaSourceRegistry.h \ | |
| 3033 Modules/mediasource/SourceBuffer.h \ | 3031 Modules/mediasource/SourceBuffer.h \ |
| 3034 Modules/mediasource/SourceBufferList.h | 3032 Modules/mediasource/SourceBufferList.h |
| 3035 SOURCES += \ | 3033 SOURCES += \ |
| 3036 Modules/mediasource/MediaSource.cpp \ | |
| 3037 Modules/mediasource/MediaSourceRegistry.cpp \ | |
| 3038 Modules/mediasource/SourceBuffer.cpp \ | 3034 Modules/mediasource/SourceBuffer.cpp \ |
| 3039 Modules/mediasource/SourceBufferList.cpp | 3035 Modules/mediasource/SourceBufferList.cpp |
| 3040 } | 3036 } |
| 3041 | 3037 |
| 3042 contains(DEFINES, ENABLE_ICONDATABASE=1) { | 3038 contains(DEFINES, ENABLE_ICONDATABASE=1) { |
| 3043 SOURCES += \ | 3039 SOURCES += \ |
| 3044 loader/icon/IconDatabase.cpp \ | 3040 loader/icon/IconDatabase.cpp \ |
| 3045 loader/icon/IconRecord.cpp \ | 3041 loader/icon/IconRecord.cpp \ |
| 3046 loader/icon/PageURLRecord.cpp | 3042 loader/icon/PageURLRecord.cpp |
| 3047 } | 3043 } |
| (...skipping 946 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3994 SOURCES += platform/graphics/surfaces/mac/GraphicsSurfaceMac.cpp | 3990 SOURCES += platform/graphics/surfaces/mac/GraphicsSurfaceMac.cpp |
| 3995 INCLUDEPATH += /System/Library/Frameworks/CoreFoundation.framework/Heade
rs | 3991 INCLUDEPATH += /System/Library/Frameworks/CoreFoundation.framework/Heade
rs |
| 3996 } | 3992 } |
| 3997 contains(DEFINES, HAVE_XCOMPOSITE=1) { | 3993 contains(DEFINES, HAVE_XCOMPOSITE=1) { |
| 3998 SOURCES += platform/graphics/surfaces/qt/GraphicsSurfaceGLX.cpp | 3994 SOURCES += platform/graphics/surfaces/qt/GraphicsSurfaceGLX.cpp |
| 3999 } | 3995 } |
| 4000 } | 3996 } |
| 4001 | 3997 |
| 4002 # Make sure the derived sources are built | 3998 # Make sure the derived sources are built |
| 4003 include(DerivedSources.pri) | 3999 include(DerivedSources.pri) |
| OLD | NEW |