Home | History | Annotate | Download | only in wtf
      1 # wtf - qmake build info
      2 
      3 SOURCES += \
      4     wtf/Assertions.cpp \
      5     wtf/ByteArray.cpp \
      6     wtf/CryptographicallyRandomNumber.cpp \
      7     wtf/CurrentTime.cpp \
      8     wtf/DateMath.cpp \
      9     wtf/dtoa.cpp \
     10     wtf/DecimalNumber.cpp \
     11     wtf/FastMalloc.cpp \
     12     wtf/gobject/GOwnPtr.cpp \
     13     wtf/gobject/GRefPtr.cpp \
     14     wtf/HashTable.cpp \
     15     wtf/MD5.cpp \
     16     wtf/MainThread.cpp \
     17     wtf/NullPtr.cpp \
     18     wtf/OSRandomSource.cpp \
     19     wtf/qt/MainThreadQt.cpp \
     20     wtf/qt/StringQt.cpp \
     21     wtf/qt/ThreadingQt.cpp \
     22     wtf/PageAllocationAligned.cpp \
     23     wtf/PageBlock.cpp \
     24     wtf/RandomNumber.cpp \
     25     wtf/RefCountedLeakCounter.cpp \
     26     wtf/SHA1.cpp \
     27     wtf/StackBounds.cpp \
     28     wtf/TCSystemAlloc.cpp \
     29     wtf/ThreadingNone.cpp \
     30     wtf/Threading.cpp \
     31     wtf/TypeTraits.cpp \
     32     wtf/WTFThreadData.cpp \
     33     wtf/text/AtomicString.cpp \
     34     wtf/text/CString.cpp \
     35     wtf/text/StringBuilder.cpp \
     36     wtf/text/StringImpl.cpp \
     37     wtf/text/StringStatics.cpp \
     38     wtf/text/WTFString.cpp \
     39     wtf/unicode/CollatorDefault.cpp \
     40     wtf/unicode/icu/CollatorICU.cpp \
     41     wtf/unicode/UTF8.cpp
     42 
     43 contains(DEFINES, USE_GSTREAMER=1) {
     44     DEFINES += ENABLE_GLIB_SUPPORT=1
     45     PKGCONFIG += glib-2.0 gio-2.0
     46     CONFIG += link_pkgconfig
     47 }
     48 
     49 unix:!symbian: SOURCES += wtf/OSAllocatorPosix.cpp
     50 symbian: SOURCES += wtf/OSAllocatorSymbian.cpp
     51 win*|wince*: SOURCES += wtf/OSAllocatorWin.cpp
     52