<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head><meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>[182380] releases/WebKitGTK/webkit-2.6</title>
</head>
<body>
<style type="text/css"><!--
#msg dl.meta { border: 1px #006 solid; background: #369; padding: 6px; color: #fff; }
#msg dl.meta dt { float: left; width: 6em; font-weight: bold; }
#msg dt:after { content:':';}
#msg dl, #msg dt, #msg ul, #msg li, #header, #footer, #logmsg { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt; }
#msg dl a { font-weight: bold}
#msg dl a:link { color:#fc3; }
#msg dl a:active { color:#ff0; }
#msg dl a:visited { color:#cc6; }
h3 { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt; font-weight: bold; }
#msg pre { overflow: auto; background: #ffc; border: 1px #fa0 solid; padding: 6px; }
#logmsg { background: #ffc; border: 1px #fa0 solid; padding: 1em 1em 0 1em; }
#logmsg p, #logmsg pre, #logmsg blockquote { margin: 0 0 1em 0; }
#logmsg p, #logmsg li, #logmsg dt, #logmsg dd { line-height: 14pt; }
#logmsg h1, #logmsg h2, #logmsg h3, #logmsg h4, #logmsg h5, #logmsg h6 { margin: .5em 0; }
#logmsg h1:first-child, #logmsg h2:first-child, #logmsg h3:first-child, #logmsg h4:first-child, #logmsg h5:first-child, #logmsg h6:first-child { margin-top: 0; }
#logmsg ul, #logmsg ol { padding: 0; list-style-position: inside; margin: 0 0 0 1em; }
#logmsg ul { text-indent: -1em; padding-left: 1em; }#logmsg ol { text-indent: -1.5em; padding-left: 1.5em; }
#logmsg > ul, #logmsg > ol { margin: 0 0 1em 0; }
#logmsg pre { background: #eee; padding: 1em; }
#logmsg blockquote { border: 1px solid #fa0; border-left-width: 10px; padding: 1em 1em 0 1em; background: white;}
#logmsg dl { margin: 0; }
#logmsg dt { font-weight: bold; }
#logmsg dd { margin: 0; padding: 0 0 0.5em 0; }
#logmsg dd:before { content:'\00bb';}
#logmsg table { border-spacing: 0px; border-collapse: collapse; border-top: 4px solid #fa0; border-bottom: 1px solid #fa0; background: #fff; }
#logmsg table th { text-align: left; font-weight: normal; padding: 0.2em 0.5em; border-top: 1px dotted #fa0; }
#logmsg table td { text-align: right; border-top: 1px dotted #fa0; padding: 0.2em 0.5em; }
#logmsg table thead th { text-align: center; border-bottom: 1px solid #fa0; }
#logmsg table th.Corner { text-align: left; }
#logmsg hr { border: none 0; border-top: 2px dashed #fa0; height: 1px; }
#header, #footer { color: #fff; background: #636; border: 1px #300 solid; padding: 6px; }
#patch { width: 100%; }
#patch h4 {font-family: verdana,arial,helvetica,sans-serif;font-size:10pt;padding:8px;background:#369;color:#fff;margin:0;}
#patch .propset h4, #patch .binary h4 {margin:0;}
#patch pre {padding:0;line-height:1.2em;margin:0;}
#patch .diff {width:100%;background:#eee;padding: 0 0 10px 0;overflow:auto;}
#patch .propset .diff, #patch .binary .diff {padding:10px 0;}
#patch span {display:block;padding:0 10px;}
#patch .modfile, #patch .addfile, #patch .delfile, #patch .propset, #patch .binary, #patch .copfile {border:1px solid #ccc;margin:10px 0;}
#patch ins {background:#dfd;text-decoration:none;display:block;padding:0 10px;}
#patch del {background:#fdd;text-decoration:none;display:block;padding:0 10px;}
#patch .lines, .info {color:#888;background:#fff;}
--></style>
<div id="msg">
<dl class="meta">
<dt>Revision</dt> <dd><a href="http://trac.webkit.org/projects/webkit/changeset/182380">182380</a></dd>
<dt>Author</dt> <dd>carlosgc@webkit.org</dd>
<dt>Date</dt> <dd>2015-04-06 00:46:20 -0700 (Mon, 06 Apr 2015)</dd>
</dl>
<h3>Log Message</h3>
<pre>Merge <a href="http://trac.webkit.org/projects/webkit/changeset/178672">r178672</a> - [GTK] Generate the make dist manifest from a CMake template file
https://bugs.webkit.org/show_bug.cgi?id=139387
Patch by Michael Catanzaro <mcatanzaro@igalia.com> on 2015-01-19
Reviewed by Martin Robinson.
.:
Generate manifest.txt from manifest.txt.in. Only expose the dist and
distcheck targets for developer builds, as they won't work when
building from a tarball because the manifest is not distributed.
* Source/PlatformGTK.cmake:
Tools:
Remove the code that performs variable substitution on manifest.txt.
Replace the custom variables used in that file with CMake variables.
* gtk/make-dist.py:
(Manifest.add_directory):
(Manifest.get_full_source_path):
(Manifest.process_line):
(Manifest.resolve_variables): Deleted.
(Manifest.get_full_tarball_path): Deleted.
* gtk/manifest.txt.in: Renamed from Tools/gtk/manifest.txt.</pre>
<h3>Modified Paths</h3>
<ul>
<li><a href="#releasesWebKitGTKwebkit26ChangeLog">releases/WebKitGTK/webkit-2.6/ChangeLog</a></li>
<li><a href="#releasesWebKitGTKwebkit26SourcePlatformGTKcmake">releases/WebKitGTK/webkit-2.6/Source/PlatformGTK.cmake</a></li>
<li><a href="#releasesWebKitGTKwebkit26ToolsChangeLog">releases/WebKitGTK/webkit-2.6/Tools/ChangeLog</a></li>
<li><a href="#releasesWebKitGTKwebkit26Toolsgtkmakedistpy">releases/WebKitGTK/webkit-2.6/Tools/gtk/make-dist.py</a></li>
</ul>
<h3>Added Paths</h3>
<ul>
<li><a href="#releasesWebKitGTKwebkit26Toolsgtkmanifesttxtin">releases/WebKitGTK/webkit-2.6/Tools/gtk/manifest.txt.in</a></li>
</ul>
<h3>Removed Paths</h3>
<ul>
<li><a href="#releasesWebKitGTKwebkit26Toolsgtkmanifesttxt">releases/WebKitGTK/webkit-2.6/Tools/gtk/manifest.txt</a></li>
</ul>
</div>
<div id="patch">
<h3>Diff</h3>
<a id="releasesWebKitGTKwebkit26ChangeLog"></a>
<div class="modfile"><h4>Modified: releases/WebKitGTK/webkit-2.6/ChangeLog (182379 => 182380)</h4>
<pre class="diff"><span>
<span class="info">--- releases/WebKitGTK/webkit-2.6/ChangeLog        2015-04-06 07:22:35 UTC (rev 182379)
+++ releases/WebKitGTK/webkit-2.6/ChangeLog        2015-04-06 07:46:20 UTC (rev 182380)
</span><span class="lines">@@ -1,3 +1,16 @@
</span><ins>+2015-01-19 Michael Catanzaro <mcatanzaro@igalia.com>
+
+ [GTK] Generate the make dist manifest from a CMake template file
+ https://bugs.webkit.org/show_bug.cgi?id=139387
+
+ Reviewed by Martin Robinson.
+
+ Generate manifest.txt from manifest.txt.in. Only expose the dist and
+ distcheck targets for developer builds, as they won't work when
+ building from a tarball because the manifest is not distributed.
+
+ * Source/PlatformGTK.cmake:
+
</ins><span class="cx"> 2015-01-15 Carlos Garcia Campos <cgarcia@igalia.com>
</span><span class="cx">
</span><span class="cx"> Unreviewed. Update OptionsGTK.cmake and NEWS for 2.6.5 release.
</span></span></pre></div>
<a id="releasesWebKitGTKwebkit26SourcePlatformGTKcmake"></a>
<div class="modfile"><h4>Modified: releases/WebKitGTK/webkit-2.6/Source/PlatformGTK.cmake (182379 => 182380)</h4>
<pre class="diff"><span>
<span class="info">--- releases/WebKitGTK/webkit-2.6/Source/PlatformGTK.cmake        2015-04-06 07:22:35 UTC (rev 182379)
+++ releases/WebKitGTK/webkit-2.6/Source/PlatformGTK.cmake        2015-04-06 07:46:20 UTC (rev 182380)
</span><span class="lines">@@ -51,40 +51,46 @@
</span><span class="cx"> COMMAND ${TOOLS_DIR}/gtk/check-for-webkitdom-api-breaks
</span><span class="cx"> )
</span><span class="cx">
</span><ins>+if (DEVELOPER_MODE)
+ configure_file(
+ ${TOOLS_DIR}/gtk/manifest.txt.in
+ ${CMAKE_BINARY_DIR}/manifest.txt
+ )
</ins><span class="cx">
</span><del>-add_custom_command(
- OUTPUT ${CMAKE_BINARY_DIR}/webkitgtk-${PROJECT_VERSION}.tar
- DEPENDS ${TOOLS_DIR}/gtk/make-dist.py
- DEPENDS ${TOOLS_DIR}/gtk/manifest.txt
- DEPENDS WebKit2
- DEPENDS gtkdoc
- COMMAND ${TOOLS_DIR}/gtk/make-dist.py
- --source-dir=${CMAKE_SOURCE_DIR}
- --build-dir=${CMAKE_BINARY_DIR}
- --version=${PROJECT_VERSION}
- ${TOOLS_DIR}/gtk/manifest.txt
-)
</del><ins>+ add_custom_command(
+ OUTPUT ${CMAKE_BINARY_DIR}/webkitgtk-${PROJECT_VERSION}.tar
+ DEPENDS ${TOOLS_DIR}/gtk/make-dist.py
+ DEPENDS ${CMAKE_BINARY_DIR}/manifest.txt
+ DEPENDS WebKit2
+ DEPENDS gtkdoc
+ COMMAND ${TOOLS_DIR}/gtk/make-dist.py
+ --source-dir=${CMAKE_SOURCE_DIR}
+ --build-dir=${CMAKE_BINARY_DIR}
+ --version=${PROJECT_VERSION}
+ ${CMAKE_BINARY_DIR}/manifest.txt
+ )
</ins><span class="cx">
</span><del>-add_custom_command(
- OUTPUT ${CMAKE_BINARY_DIR}/webkitgtk-${PROJECT_VERSION}.tar.xz
- DEPENDS ${CMAKE_BINARY_DIR}/webkitgtk-${PROJECT_VERSION}.tar
- COMMAND xz -f ${CMAKE_BINARY_DIR}/webkitgtk-${PROJECT_VERSION}.tar
-)
</del><ins>+ add_custom_command(
+ OUTPUT ${CMAKE_BINARY_DIR}/webkitgtk-${PROJECT_VERSION}.tar.xz
+ DEPENDS ${CMAKE_BINARY_DIR}/webkitgtk-${PROJECT_VERSION}.tar
+ COMMAND xz -f ${CMAKE_BINARY_DIR}/webkitgtk-${PROJECT_VERSION}.tar
+ )
</ins><span class="cx">
</span><del>-add_custom_target(dist
- DEPENDS ${CMAKE_BINARY_DIR}/webkitgtk-${PROJECT_VERSION}.tar.xz
-)
</del><ins>+ add_custom_target(dist
+ DEPENDS ${CMAKE_BINARY_DIR}/webkitgtk-${PROJECT_VERSION}.tar.xz
+ )
</ins><span class="cx">
</span><del>-add_custom_target(distcheck
- DEPENDS ${TOOLS_DIR}/gtk/make-dist.py
- DEPENDS ${TOOLS_DIR}/gtk/manifest.txt
- DEPENDS WebKit2
- DEPENDS gtkdoc
- COMMAND ${TOOLS_DIR}/gtk/make-dist.py
- --check
- --source-dir=${CMAKE_SOURCE_DIR}
- --build-dir=${CMAKE_BINARY_DIR}
- --version=/webkitgtk-${PROJECT_VERSION}
- ${TOOLS_DIR}/gtk/manifest.txt
- COMMAND xz -f ${CMAKE_BINARY_DIR}/webkitgtk-${PROJECT_VERSION}.tar
-)
</del><ins>+ add_custom_target(distcheck
+ DEPENDS ${TOOLS_DIR}/gtk/make-dist.py
+ DEPENDS ${CMAKE_BINARY_DIR}/manifest.txt
+ DEPENDS WebKit2
+ DEPENDS gtkdoc
+ COMMAND ${TOOLS_DIR}/gtk/make-dist.py
+ --check
+ --source-dir=${CMAKE_SOURCE_DIR}
+ --build-dir=${CMAKE_BINARY_DIR}
+ --version=${PROJECT_VERSION}
+ ${CMAKE_BINARY_DIR}/manifest.txt
+ COMMAND xz -f ${CMAKE_BINARY_DIR}/webkitgtk-${PROJECT_VERSION}.tar
+ )
+endif ()
</ins></span></pre></div>
<a id="releasesWebKitGTKwebkit26ToolsChangeLog"></a>
<div class="modfile"><h4>Modified: releases/WebKitGTK/webkit-2.6/Tools/ChangeLog (182379 => 182380)</h4>
<pre class="diff"><span>
<span class="info">--- releases/WebKitGTK/webkit-2.6/Tools/ChangeLog        2015-04-06 07:22:35 UTC (rev 182379)
+++ releases/WebKitGTK/webkit-2.6/Tools/ChangeLog        2015-04-06 07:46:20 UTC (rev 182380)
</span><span class="lines">@@ -1,3 +1,21 @@
</span><ins>+2015-01-19 Michael Catanzaro <mcatanzaro@igalia.com>
+
+ [GTK] Generate the make dist manifest from a CMake template file
+ https://bugs.webkit.org/show_bug.cgi?id=139387
+
+ Reviewed by Martin Robinson.
+
+ Remove the code that performs variable substitution on manifest.txt.
+ Replace the custom variables used in that file with CMake variables.
+
+ * gtk/make-dist.py:
+ (Manifest.add_directory):
+ (Manifest.get_full_source_path):
+ (Manifest.process_line):
+ (Manifest.resolve_variables): Deleted.
+ (Manifest.get_full_tarball_path): Deleted.
+ * gtk/manifest.txt.in: Renamed from Tools/gtk/manifest.txt.
+
</ins><span class="cx"> 2015-01-07 Michael Catanzaro <mcatanzaro@igalia.com>
</span><span class="cx">
</span><span class="cx"> [GTK] Build gtk-doc without gtkdoc-mktmpl
</span></span></pre></div>
<a id="releasesWebKitGTKwebkit26Toolsgtkmakedistpy"></a>
<div class="modfile"><h4>Modified: releases/WebKitGTK/webkit-2.6/Tools/gtk/make-dist.py (182379 => 182380)</h4>
<pre class="diff"><span>
<span class="info">--- releases/WebKitGTK/webkit-2.6/Tools/gtk/make-dist.py        2015-04-06 07:22:35 UTC (rev 182379)
+++ releases/WebKitGTK/webkit-2.6/Tools/gtk/make-dist.py        2015-04-06 07:46:20 UTC (rev 182380)
</span><span class="lines">@@ -159,27 +159,14 @@
</span><span class="cx"> self.current_directory = directory
</span><span class="cx"> self.directories.append(directory)
</span><span class="cx">
</span><del>- def resolve_variables(self, string, strip=False):
- if strip:
- return string.replace('$source', '').replace('$build', '')
-
- string = string.replace('$source', self.source_root)
- if self.build_root:
- string = string.replace('$build', self.build_root)
- elif string.find('$build') != -1:
- raise Exception('Manifest has $build but build root not given.')
- return string
-
</del><span class="cx"> def get_full_source_path(self, source_path):
</span><del>- full_source_path = self.resolve_variables(source_path)
- if not os.path.exists(full_source_path):
- full_source_path = os.path.join(self.source_root, source_path)
- if not os.path.exists(full_source_path):
- raise Exception('Could not find directory %s' % full_source_path)
- return full_source_path
</del><ins>+ if not os.path.exists(source_path):
+ source_path = os.path.join(self.source_root, source_path)
+ if not os.path.exists(source_path):
+ raise Exception('Could not find directory %s' % source_path)
+ return source_path
</ins><span class="cx">
</span><span class="cx"> def get_full_tarball_path(self, path):
</span><del>- path = self.resolve_variables(path, strip=True)
</del><span class="cx"> return self.tarball_root + path
</span><span class="cx">
</span><span class="cx"> def get_source_and_tarball_paths_from_parts(self, parts):
</span><span class="lines">@@ -202,9 +189,9 @@
</span><span class="cx"> elif parts[0] == "file" and len(parts) > 1:
</span><span class="cx"> self.add_directory(File(*self.get_source_and_tarball_paths_from_parts(parts)))
</span><span class="cx"> elif parts[0] == "exclude" and len(parts) > 1:
</span><del>- self.add_rule(Rule(Rule.Result.EXCLUDE, self.resolve_variables(parts[1])))
</del><ins>+ self.add_rule(Rule(Rule.Result.EXCLUDE, parts[1]))
</ins><span class="cx"> elif parts[0] == "include" and len(parts) > 1:
</span><del>- self.add_rule(Rule(Rule.Result.INCLUDE, self.resolve_variables(parts[1])))
</del><ins>+ self.add_rule(Rule(Rule.Result.INCLUDE, parts[1]))
</ins><span class="cx">
</span><span class="cx"> def should_skip_file(self, directory, filename):
</span><span class="cx"> # Only allow files that are not in version control when they are explicitly included in the manifest from the build dir.
</span></span></pre></div>
<a id="releasesWebKitGTKwebkit26Toolsgtkmanifesttxt"></a>
<div class="delfile"><h4>Deleted: releases/WebKitGTK/webkit-2.6/Tools/gtk/manifest.txt (182379 => 182380)</h4>
<pre class="diff"><span>
<span class="info">--- releases/WebKitGTK/webkit-2.6/Tools/gtk/manifest.txt        2015-04-06 07:22:35 UTC (rev 182379)
+++ releases/WebKitGTK/webkit-2.6/Tools/gtk/manifest.txt        2015-04-06 07:46:20 UTC (rev 182380)
</span><span class="lines">@@ -1,110 +0,0 @@
</span><del>-# Global rules
-exclude #$
-exclude ChangeLog
-exclude Makefile
-exclude PlatformEfl.cmake
-exclude PlatformWin.cmake
-exclude PlatformWinCE.cmake
-exclude tags$
-exclude ~$
-exclude \.#$
-exclude \.bak$
-exclude \.cproject$
-exclude \.git$
-exclude \.gitattributes$
-exclude \.gitignore$
-exclude \.gyp$
-exclude \.icns$
-exclude \.lproj$
-exclude \.m$
-exclude \.mm$
-exclude \.nib$
-exclude \.o$
-exclude \.order$
-exclude \.orig$
-exclude \.pdf$
-exclude \.plist$
-exclude \.pro\.user$
-exclude \.project$
-exclude \.props$
-exclude \.pyc$
-exclude \.pyo$
-exclude \.rej$
-exclude \.rtf$
-exclude \.sb$
-exclude \.sb\.in$
-exclude \.settings$
-exclude \.svn$
-exclude \.sw[a-p]$
-exclude \.vcxproj$
-exclude \.xib$
-exclude \.xcconfig$
-exclude \.xcodeproj$
-
-# Exclude directories from other ports
-exclude .*\/(mac|ios|cf|cg|cocoa|Cocoa|objc|avfoundation|ca|curl|efl|win|wince)\/.*$
-
-directory Source
-exclude Source/JavaScriptCore/tests
-exclude Source/WebCore/platform/audio/resources
-exclude Source/WebCore/bindings/scripts/test
-exclude Source/WebCore/platform/efl/DefaultTheme
-exclude Source/WebCore/Resources
-exclude Source/bmalloc
-exclude Source/cmake/EFLHelpers.cmake$
-exclude Source/cmake/OptionsWinCairo.cmake$
-exclude Source/cmake/OptionsWindows.cmake$
-exclude Source/cmake/OptionsWinCE.cmake$
-exclude Source/cmake/OptionsAppleWin.cmake$
-exclude Source/cmake/OptionsEfl.cmake$
-exclude Source/cmake/eflsymbols.filter$
-exclude Source/WebInspectorUI/UserInterface/Images
-
-directory Source/WebInspectorUI/UserInterface/Images/gtk
-
-# Most of the files in Source/WebKit are not necessary to build GTK+ and
-# the directory includes lots of images, so we're a bit more picky here.
-exclude Source/WebKit/.*
-exclude Source/WebKit2/Configurations
-exclude Source/WebKit2/Resources
-exclude Source/WebKit2/gtk/NEWS$
-
-# We do want to include the NEWS, but we want it to be in the root of the archive.
-file Source/WebKit2/gtk/NEWS NEWS
-
-file Source/WebCore/English.lproj/mediaControlsLocalizedStrings.js Source/WebCore/English.lproj/mediaControlsLocalizedStrings.js
-file Source/WebInspectorUI/Localizations/en.lproj/localizedStrings.js Source/WebInspectorUI/Localizations/en.lproj/localizedStrings.js
-
-# Include only the resources we actually build
-file Source/WebCore/Resources/deleteButton.png
-file Source/WebCore/Resources/deleteButton@2x.png
-file Source/WebCore/Resources/missingImage.png
-file Source/WebCore/Resources/missingImage@2x.png
-file Source/WebCore/Resources/panIcon.png
-file Source/WebCore/Resources/plugIns.js
-file Source/WebCore/Resources/textAreaResizeCorner.png
-file Source/WebCore/Resources/textAreaResizeCorner@2x.png
-file Source/WebCore/Resources/urlIcon.png
-file Source/WebCore/platform/audio/resources/Composite.wav
-
-directory Tools/gtk
-directory Tools/ImageDiff
-directory Tools/MiniBrowser
-directory Tools/TestWebKitAPI
-
-directory Tools/DumpRenderTree
-exclude Tools/DumpRenderTree/fonts
-
-directory Tools/WebKitTestRunner
-exclude Tools/WebKitTestRunner/fonts/
-
-file CMakeLists.txt
-file Tools/CMakeLists.txt
-file Tools/Scripts/VCSUtils.pm
-file Tools/Scripts/run-gtk-tests
-file Tools/Scripts/webkit-build-directory
-file Tools/Scripts/webkitdirs.pm
-file Tools/jhbuild/jhbuildutils.py
-
-directory $build/Documentation/webkit2gtk/html Documentation/webkit2gtk/html
-directory $build/Documentation/webkitdomgtk/html Documentation/webkitdomgtk/html
</del></span></pre></div>
<a id="releasesWebKitGTKwebkit26Toolsgtkmanifesttxtinfromrev178506releasesWebKitGTKwebkit26Toolsgtkmanifesttxt"></a>
<div class="copfile"><h4>Copied: releases/WebKitGTK/webkit-2.6/Tools/gtk/manifest.txt.in (from rev 178506, releases/WebKitGTK/webkit-2.6/Tools/gtk/manifest.txt) (0 => 182380)</h4>
<pre class="diff"><span>
<span class="info">--- releases/WebKitGTK/webkit-2.6/Tools/gtk/manifest.txt.in         (rev 0)
+++ releases/WebKitGTK/webkit-2.6/Tools/gtk/manifest.txt.in        2015-04-06 07:46:20 UTC (rev 182380)
</span><span class="lines">@@ -0,0 +1,110 @@
</span><ins>+# Global rules
+exclude #$
+exclude ChangeLog
+exclude Makefile
+exclude PlatformEfl.cmake
+exclude PlatformWin.cmake
+exclude PlatformWinCE.cmake
+exclude tags$
+exclude ~$
+exclude \.#$
+exclude \.bak$
+exclude \.cproject$
+exclude \.git$
+exclude \.gitattributes$
+exclude \.gitignore$
+exclude \.gyp$
+exclude \.icns$
+exclude \.lproj$
+exclude \.m$
+exclude \.mm$
+exclude \.nib$
+exclude \.o$
+exclude \.order$
+exclude \.orig$
+exclude \.pdf$
+exclude \.plist$
+exclude \.pro\.user$
+exclude \.project$
+exclude \.props$
+exclude \.pyc$
+exclude \.pyo$
+exclude \.rej$
+exclude \.rtf$
+exclude \.sb$
+exclude \.sb\.in$
+exclude \.settings$
+exclude \.svn$
+exclude \.sw[a-p]$
+exclude \.vcxproj$
+exclude \.xib$
+exclude \.xcconfig$
+exclude \.xcodeproj$
+
+# Exclude directories from other ports
+exclude .*\/(mac|ios|cf|cg|cocoa|Cocoa|objc|avfoundation|ca|curl|efl|win|wince)\/.*$
+
+directory Source
+exclude Source/JavaScriptCore/tests
+exclude Source/WebCore/platform/audio/resources
+exclude Source/WebCore/bindings/scripts/test
+exclude Source/WebCore/platform/efl/DefaultTheme
+exclude Source/WebCore/Resources
+exclude Source/bmalloc
+exclude Source/cmake/EFLHelpers.cmake$
+exclude Source/cmake/OptionsWinCairo.cmake$
+exclude Source/cmake/OptionsWindows.cmake$
+exclude Source/cmake/OptionsWinCE.cmake$
+exclude Source/cmake/OptionsAppleWin.cmake$
+exclude Source/cmake/OptionsEfl.cmake$
+exclude Source/cmake/eflsymbols.filter$
+exclude Source/WebInspectorUI/UserInterface/Images
+
+directory Source/WebInspectorUI/UserInterface/Images/gtk
+
+# Most of the files in Source/WebKit are not necessary to build GTK+ and
+# the directory includes lots of images, so we're a bit more picky here.
+exclude Source/WebKit/.*
+exclude Source/WebKit2/Configurations
+exclude Source/WebKit2/Resources
+exclude Source/WebKit2/gtk/NEWS$
+
+# We do want to include the NEWS, but we want it to be in the root of the archive.
+file Source/WebKit2/gtk/NEWS NEWS
+
+file Source/WebCore/English.lproj/mediaControlsLocalizedStrings.js Source/WebCore/English.lproj/mediaControlsLocalizedStrings.js
+file Source/WebInspectorUI/Localizations/en.lproj/localizedStrings.js Source/WebInspectorUI/Localizations/en.lproj/localizedStrings.js
+
+# Include only the resources we actually build
+file Source/WebCore/Resources/deleteButton.png
+file Source/WebCore/Resources/deleteButton@2x.png
+file Source/WebCore/Resources/missingImage.png
+file Source/WebCore/Resources/missingImage@2x.png
+file Source/WebCore/Resources/panIcon.png
+file Source/WebCore/Resources/plugIns.js
+file Source/WebCore/Resources/textAreaResizeCorner.png
+file Source/WebCore/Resources/textAreaResizeCorner@2x.png
+file Source/WebCore/Resources/urlIcon.png
+file Source/WebCore/platform/audio/resources/Composite.wav
+
+directory Tools/gtk
+directory Tools/ImageDiff
+directory Tools/MiniBrowser
+directory Tools/TestWebKitAPI
+
+directory Tools/DumpRenderTree
+exclude Tools/DumpRenderTree/fonts
+
+directory Tools/WebKitTestRunner
+exclude Tools/WebKitTestRunner/fonts/
+
+file CMakeLists.txt
+file Tools/CMakeLists.txt
+file Tools/Scripts/VCSUtils.pm
+file Tools/Scripts/run-gtk-tests
+file Tools/Scripts/webkit-build-directory
+file Tools/Scripts/webkitdirs.pm
+file Tools/jhbuild/jhbuildutils.py
+
+directory ${CMAKE_BINARY_DIR}/Documentation/webkit2gtk/html Documentation/webkit2gtk/html
+directory ${CMAKE_BINARY_DIR}/Documentation/webkitdomgtk/html Documentation/webkitdomgtk/html
</ins></span></pre>
</div>
</div>
</body>
</html>