Title: [175793] trunk/Tools
Revision
175793
Author
[email protected]
Date
2014-11-09 10:27:56 -0800 (Sun, 09 Nov 2014)

Log Message

[GTK] generate-gtkdoc should ignore invalid files
https://bugs.webkit.org/show_bug.cgi?id=138542

Reviewed by Darin Adler.

* gtk/generate-gtkdoc:
(files_to_ignore.file_should_be_ignored): Return True to ignore
invalid files.

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (175792 => 175793)


--- trunk/Tools/ChangeLog	2014-11-09 17:25:21 UTC (rev 175792)
+++ trunk/Tools/ChangeLog	2014-11-09 18:27:56 UTC (rev 175793)
@@ -1,3 +1,14 @@
+2014-11-09  Carlos Garcia Campos  <[email protected]>
+
+        [GTK] generate-gtkdoc should ignore invalid files
+        https://bugs.webkit.org/show_bug.cgi?id=138542
+
+        Reviewed by Darin Adler.
+
+        * gtk/generate-gtkdoc:
+        (files_to_ignore.file_should_be_ignored): Return True to ignore
+        invalid files.
+
 2014-11-08  Alexey Proskuryakov  <[email protected]>
 
         Delete cookies between tests

Modified: trunk/Tools/gtk/generate-gtkdoc (175792 => 175793)


--- trunk/Tools/gtk/generate-gtkdoc	2014-11-09 17:25:21 UTC (rev 175792)
+++ trunk/Tools/gtk/generate-gtkdoc	2014-11-09 18:27:56 UTC (rev 175793)
@@ -92,7 +92,7 @@
         if os.path.splitext(file)[1] not in ['.h', '.c', '.cpp', '.cc']:
             return False # These files are ignored anyway.
         if not os.path.isfile(file):
-            return False
+            return True
         return os.path.abspath(file) not in implementation_files
 
     all_files = sum([[os.path.join(dir, file) for file in os.listdir(dir)] for dir in source_dirs], [])
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to