Changeset 52355 in webkit for trunk/JavaScriptCore/JavaScriptCore.pri
- Timestamp:
- Dec 18, 2009, 4:29:53 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/JavaScriptCore.pri
r52264 r52355 116 116 interpreter/Interpreter.cpp \ 117 117 interpreter/RegisterFile.cpp \ 118 jit/ExecutableAllocatorPosix.cpp \ 119 jit/ExecutableAllocatorSymbian.cpp \ 120 jit/ExecutableAllocatorWin.cpp \ 118 121 jit/ExecutableAllocator.cpp \ 119 122 jit/JITArithmetic.cpp \ … … 183 186 runtime/LiteralParser.cpp \ 184 187 runtime/Lookup.cpp \ 188 runtime/MarkStackPosix.cpp \ 189 runtime/MarkStackSymbian.cpp \ 190 runtime/MarkStackWin.cpp \ 185 191 runtime/MarkStack.cpp \ 186 192 runtime/MathObject.cpp \ … … 219 225 wtf/MainThread.cpp \ 220 226 wtf/qt/MainThreadQt.cpp \ 227 wtf/qt/ThreadingQt.cpp \ 221 228 wtf/RandomNumber.cpp \ 222 229 wtf/RefCountedLeakCounter.cpp \ 230 wtf/ThreadingNone.cpp \ 223 231 wtf/Threading.cpp \ 224 232 wtf/TypeTraits.cpp \ … … 230 238 yarr/RegexJIT.cpp 231 239 232 symbian {233 SOURCES += jit/ExecutableAllocatorSymbian.cpp \234 runtime/MarkStackSymbian.cpp235 } else {236 win32-*|wince* {237 SOURCES += jit/ExecutableAllocatorWin.cpp \238 runtime/MarkStackWin.cpp239 } else {240 SOURCES += jit/ExecutableAllocatorPosix.cpp \241 runtime/MarkStackPosix.cpp242 }243 }244 245 240 !contains(DEFINES, USE_SYSTEM_MALLOC) { 246 241 SOURCES += wtf/TCSystemAlloc.cpp 247 }248 249 !contains(DEFINES, ENABLE_SINGLE_THREADED=1) {250 SOURCES += wtf/qt/ThreadingQt.cpp251 } else {252 DEFINES += ENABLE_JSC_MULTIPLE_THREADS=0253 SOURCES += wtf/ThreadingNone.cpp254 242 } 255 243
Note:
See TracChangeset
for help on using the changeset viewer.