From: zimmermann@webkit.org Date: Thu, 26 Jan 2012 09:09:35 +0000 (+0000) Subject: 2012-01-26 Nikolas Zimmermann X-Git-Tag: 070512121124~14491 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=bd7994dce4b5d30d5056dbee479f24f01eb8ec42;p=profile%2Fivi%2Fwebkit-efl.git 2012-01-26 Nikolas Zimmermann Not reviewed. Try to fix Qt/Win build by building OwnPtrWin.cpp into the WTF library. * WTF.pro: 2012-01-26 Nikolas Zimmermann Not reviewed. Try to fix Gtk build - JSShadowRoot.cpp can't be found, fix by looking for it in the derived sources. * GNUmakefile.list.am: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@105975 268f45cc-cd09-0410-ab3c-d52691b4dbfc --- diff --git a/Source/WTF/ChangeLog b/Source/WTF/ChangeLog index e2ae353..ee3aa11 100644 --- a/Source/WTF/ChangeLog +++ b/Source/WTF/ChangeLog @@ -1,3 +1,9 @@ +2012-01-26 Nikolas Zimmermann + + Not reviewed. Try to fix Qt/Win build by building OwnPtrWin.cpp into the WTF library. + + * WTF.pro: + 2012-01-19 Joi Sigurdsson Enable use of precompiled headers in Chromium port on Windows. diff --git a/Source/WTF/WTF.pro b/Source/WTF/WTF.pro index 7a4d9e0..69d994c 100644 --- a/Source/WTF/WTF.pro +++ b/Source/WTF/WTF.pro @@ -220,6 +220,7 @@ unix: SOURCES += \ ThreadingPthreads.cpp win*|wince*: SOURCES += \ + win/OwnPtrWin.cpp \ OSAllocatorWin.cpp \ ThreadSpecificWin.cpp \ ThreadingWin.cpp diff --git a/Source/WebCore/ChangeLog b/Source/WebCore/ChangeLog index 73293a9..6132fc2 100644 --- a/Source/WebCore/ChangeLog +++ b/Source/WebCore/ChangeLog @@ -1,3 +1,9 @@ +2012-01-26 Nikolas Zimmermann + + Not reviewed. Try to fix Gtk build - JSShadowRoot.cpp can't be found, fix by looking for it in the derived sources. + + * GNUmakefile.list.am: + 2012-01-24 Vsevolod Vlasov Web Inspector: Improve user experience of advanced search panel closing. diff --git a/Source/WebCore/GNUmakefile.list.am b/Source/WebCore/GNUmakefile.list.am index 9e77f52..680dbd6 100644 --- a/Source/WebCore/GNUmakefile.list.am +++ b/Source/WebCore/GNUmakefile.list.am @@ -467,6 +467,8 @@ webcore_built_sources += \ DerivedSources/WebCore/JSScriptProfile.h \ DerivedSources/WebCore/JSScriptProfileNode.cpp \ DerivedSources/WebCore/JSScriptProfileNode.h \ + DerivedSources/WebCore/JSShadowRoot.cpp \ + DerivedSources/WebCore/JSShadowRoot.h \ DerivedSources/WebCore/JSSharedWorkerContext.cpp \ DerivedSources/WebCore/JSSharedWorkerContext.h \ DerivedSources/WebCore/JSSharedWorker.cpp \ @@ -1156,8 +1158,6 @@ webcore_sources += \ Source/WebCore/bindings/js/JSSVGLengthCustom.cpp \ Source/WebCore/bindings/js/JSSVGPathSegCustom.cpp \ Source/WebCore/bindings/js/JSScriptProfileNodeCustom.cpp \ - Source/WebCore/bindings/js/JSShadowRoot.h \ - Source/WebCore/bindings/js/JSShadowRoot.cpp \ Source/WebCore/bindings/js/JSSharedWorkerCustom.cpp \ Source/WebCore/bindings/js/JSStorageCustom.cpp \ Source/WebCore/bindings/js/JSStorageCustom.h \