Changeset 67306 in webkit for trunk/JavaScriptCore


Ignore:
Timestamp:
Sep 11, 2010, 11:11:05 AM (15 years ago)
Author:
Simon Hausmann
Message:

JavaScriptCore: [Qt] V8 port: webcore project files changes
https://bugs.webkit.org/show_bug.cgi?id=45141

Reviewed by Andreas Kling.

so that they can also be used from WebCore.pro for v8 builds.

  • wtf/wtf.pri: Added.

WebCore: [Qt] V8 port: webcore project files changes
https://bugs.webkit.org/show_bug.cgi?id=45141

Reviewed by Andreas Kling.

Modify webcore project files to include V8 javascript engine. By default disabled.

  • WebCore.pri:
  • WebCore.pro:
  • features.pri:
Location:
trunk/JavaScriptCore
Files:
1 added
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/ChangeLog

    r67271 r67306  
     12010-09-11  Simon Hausmann  <[email protected]>
     2
     3        Reviewed by Andreas Kling.
     4
     5        [Qt] V8 port: webcore project files changes
     6        https://bugs.webkit.org/show_bug.cgi?id=45141
     7
     8        * JavaScriptCore.pro: Moved wtf specific files to wtf.pri,
     9        so that they can also be used from WebCore.pro for v8 builds.
     10        * wtf/wtf.pri: Added.
     11
    1122010-09-10  Fridrich Strba  <[email protected]>
    213
  • trunk/JavaScriptCore/JavaScriptCore.pro

    r65150 r67306  
    6767
    6868include(pcre/pcre.pri)
     69include(wtf/wtf.pri)
    6970
    7071SOURCES += \
     
    204205    runtime/TimeoutChecker.cpp \
    205206    runtime/UString.cpp \
    206     wtf/Assertions.cpp \
    207     wtf/ByteArray.cpp \
    208     wtf/CurrentTime.cpp \
    209     wtf/DateMath.cpp \
    210     wtf/dtoa.cpp \
    211     wtf/FastMalloc.cpp \
    212     wtf/HashTable.cpp \
    213     wtf/MD5.cpp \
    214     wtf/MainThread.cpp \
    215     wtf/qt/MainThreadQt.cpp \
    216     wtf/qt/StringQt.cpp \
    217     wtf/qt/ThreadingQt.cpp \
    218     wtf/PageAllocation.cpp \
    219     wtf/RandomNumber.cpp \
    220     wtf/RefCountedLeakCounter.cpp \
    221     wtf/ThreadingNone.cpp \
    222     wtf/Threading.cpp \
    223     wtf/TypeTraits.cpp \
    224     wtf/WTFThreadData.cpp \
    225     wtf/text/AtomicString.cpp \
    226     wtf/text/CString.cpp \
    227     wtf/text/StringImpl.cpp \
    228     wtf/text/StringStatics.cpp \
    229     wtf/text/WTFString.cpp \
    230     wtf/unicode/CollatorDefault.cpp \
    231     wtf/unicode/icu/CollatorICU.cpp \
    232     wtf/unicode/UTF8.cpp \
    233207    yarr/RegexCompiler.cpp \
    234208    yarr/RegexInterpreter.cpp \
     
    237211# Generated files, simply list them for JavaScriptCore
    238212
    239 !contains(DEFINES, USE_SYSTEM_MALLOC) {
    240     SOURCES += wtf/TCSystemAlloc.cpp
    241 }
    242 
    243213# Disable C++0x mode in JSC for those who enabled it in their Qt's mkspec
    244214*-g++*:QMAKE_CXXFLAGS -= -std=c++0x -std=gnu++0x
Note: See TracChangeset for help on using the changeset viewer.