Changeset 67306 in webkit for trunk/JavaScriptCore
- Timestamp:
- Sep 11, 2010, 11:11:05 AM (15 years ago)
- Location:
- trunk/JavaScriptCore
- Files:
-
- 1 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/ChangeLog
r67271 r67306 1 2010-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 1 12 2010-09-10 Fridrich Strba <[email protected]> 2 13 -
trunk/JavaScriptCore/JavaScriptCore.pro
r65150 r67306 67 67 68 68 include(pcre/pcre.pri) 69 include(wtf/wtf.pri) 69 70 70 71 SOURCES += \ … … 204 205 runtime/TimeoutChecker.cpp \ 205 206 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 \233 207 yarr/RegexCompiler.cpp \ 234 208 yarr/RegexInterpreter.cpp \ … … 237 211 # Generated files, simply list them for JavaScriptCore 238 212 239 !contains(DEFINES, USE_SYSTEM_MALLOC) {240 SOURCES += wtf/TCSystemAlloc.cpp241 }242 243 213 # Disable C++0x mode in JSC for those who enabled it in their Qt's mkspec 244 214 *-g++*:QMAKE_CXXFLAGS -= -std=c++0x -std=gnu++0x
Note:
See TracChangeset
for help on using the changeset viewer.