+2013-03-25 Martin Robinson <mrobinson@igalia.com>
+
+ [GTK] [gyp] Adding support for building WebCore rendering
+ https://bugs.webkit.org/show_bug.cgi?id=113213
+
+ Reviewed by Gustavo Noronha Silva.
+
+ * WebCore.gyp/WebCoreGTK.gyp: Build the rendering directory into a shared library.
+
2013-03-25 Tony Chang <tony@chromium.org>
Remove TextIterator argumentless constructor
'sources': [ '<@(webcore_platform_geometry_files)', ],
},
{
+ 'target_name': 'WebCoreRendering',
+ 'type': 'static_library',
+ 'dependencies': [ 'WebCoreDependencies', ],
+ 'include_dirs': [ '<@(webcoregtk_include_dirs)', ],
+ 'sources': [ '<@(webcore_files)',
+ ],
+ 'sources/': [
+ ['exclude', '.*'],
+ ['include', 'rendering/'],
+ ['exclude', '<(excluded_directories_pattern)'],
+ ['exclude', '<(excluded_files_suffixes)'],
+ ['exclude', '<(excluded_files_patterns)'],
+ ['exclude', 'AllInOne\\.cpp$'],
+ ],
+ },
+ {
'target_name': 'WebCore',
'type': 'none',
'dependencies': [
'WebCoreBindings',
'WebCorePlatform',
'WebCorePlatformGeometry',
+ 'WebCoreRendering',
],
},
],