Title: [146681] trunk/Source/WebCore
Revision
146681
Author
[email protected]
Date
2013-03-22 16:48:40 -0700 (Fri, 22 Mar 2013)

Log Message

[GTK] Add WebCoreDOM to the gyp build
https://bugs.webkit.org/show_bug.cgi?id=112737

Reviewed by Nico Weber.

* WebCore.gyp/WebCoreGTK.gyp: Add WebCoreDOM to the gyp build.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (146680 => 146681)


--- trunk/Source/WebCore/ChangeLog	2013-03-22 23:47:27 UTC (rev 146680)
+++ trunk/Source/WebCore/ChangeLog	2013-03-22 23:48:40 UTC (rev 146681)
@@ -1,5 +1,14 @@
 2013-03-19  Martin Robinson  <[email protected]>
 
+        [GTK] Add WebCoreDOM to the gyp build
+        https://bugs.webkit.org/show_bug.cgi?id=112737
+
+        Reviewed by Nico Weber.
+
+        * WebCore.gyp/WebCoreGTK.gyp: Add WebCoreDOM to the gyp build.
+
+2013-03-19  Martin Robinson  <[email protected]>
+
         [GTK] Add WebCoreHTML to the gyp build
         https://bugs.webkit.org/show_bug.cgi?id=112727
 

Modified: trunk/Source/WebCore/WebCore.gyp/WebCoreGTK.gyp (146680 => 146681)


--- trunk/Source/WebCore/WebCore.gyp/WebCoreGTK.gyp	2013-03-22 23:47:27 UTC (rev 146680)
+++ trunk/Source/WebCore/WebCore.gyp/WebCoreGTK.gyp	2013-03-22 23:48:40 UTC (rev 146681)
@@ -88,6 +88,10 @@
       '<(WebCore)/testing/TypeConversions.idl',
       '<(SHARED_INTERMEDIATE_DIR)/WebCore/InternalSettingsGenerated.idl',
     ],
+
+    'excluded_directories_pattern': '(android|chromium|ca|cf|cg|curl|efl|linux|mac|openvg|opentype|posix|qt|skia|iphone|win|wince|wx)/',
+    'excluded_files_suffixes': '(Android|CF|CG|Curl|Linux|Mac|OpenType|POSIX|Posix|Qt|Safari|Skia|Win|WinCE|Wx|V8)\\.(cpp|mm?)$',
+    'excluded_files_patterns': '.*(Chromium|Android).*',
   },
 
 
@@ -796,6 +800,19 @@
       ],
     },
     {
+      'target_name': 'WebCoreDOM',
+      'type': 'static_library',
+      'dependencies': [ 'WebCoreDependencies', ],
+      'include_dirs': [ '<@(webcoregtk_include_dirs)', ],
+      'sources': [ '<@(webcore_dom_files)', ],
+      'sources/': [
+        ['exclude', '<(excluded_directories_pattern)'],
+        ['exclude', '<(excluded_files_suffixes)'],
+        ['exclude', '<(excluded_files_patterns)'],
+        ['exclude', 'AllInOne\\.cpp$'],
+      ],
+    },
+    {
       'target_name': 'WebCoreHTML',
       'type': 'static_library',
       'dependencies': [ 'WebCoreDependencies', ],
@@ -810,6 +827,7 @@
       'target_name': 'WebCore',
       'type': 'none',
       'dependencies': [ 
+        'WebCoreDOM',
         'WebCoreHTML',
         'WebCoreBindings',
       ],
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to