Title: [96688] trunk/Tools
Revision
96688
Author
[email protected]
Date
2011-10-05 02:28:55 -0700 (Wed, 05 Oct 2011)

Log Message

watchlist: Add more rules for chromium public api and sort the file.
https://bugs.webkit.org/show_bug.cgi?id=69323

Reviewed by Adam Barth.

* Scripts/webkitpy/common/config/watchlist:

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (96687 => 96688)


--- trunk/Tools/ChangeLog	2011-10-05 09:26:58 UTC (rev 96687)
+++ trunk/Tools/ChangeLog	2011-10-05 09:28:55 UTC (rev 96688)
@@ -1,5 +1,14 @@
 2011-10-05  David Levin  <[email protected]>
 
+        watchlist: Add more rules for chromium public api and sort the file.
+        https://bugs.webkit.org/show_bug.cgi?id=69323
+
+        Reviewed by Adam Barth.
+
+        * Scripts/webkitpy/common/config/watchlist:
+
+2011-10-05  David Levin  <[email protected]>
+
         watchlist: Don't add the same message to a bug more than once.
         https://bugs.webkit.org/show_bug.cgi?id=69303
 

Modified: trunk/Tools/Scripts/webkitpy/common/config/watchlist (96687 => 96688)


--- trunk/Tools/Scripts/webkitpy/common/config/watchlist	2011-10-05 09:26:58 UTC (rev 96687)
+++ trunk/Tools/Scripts/webkitpy/common/config/watchlist	2011-10-05 09:28:55 UTC (rev 96688)
@@ -1,9 +1,12 @@
 #  -*- mode: Python;-*-
 {
     "DEFINITIONS": {
-        "WatchListScript": {
-            "filename": r"Tools/Scripts/webkitpy/common/watchlist/.*",
+        "ChromiumGraphics": {
+            "filename": r"Source/WebCore/platform/graphics/chromium/.*",
         },
+        "ChromiumPublicApi": {
+            "filename": r"Source/WebKit/chromium/public/.*"
+        },
         "ThreadingFiles": {
             "filename": r"Source/_javascript_Core/wtf/ThreadSafeRefCounted\.h"
                         r"|Source/_javascript_Core/wtf/Threading\.h",
@@ -11,16 +14,21 @@
         "ThreadingUsage": {
             "more": r"deprecatedTurnOffVerifier|crossThreadString|threadsafeCopy|ThreadSafeRefCounted|CrossThreadRefCounted",
         },
-        "ChromiumGraphics": {
-            "filename": r"Source/WebCore/platform/graphics/chromium/.*",
+        "WatchListScript": {
+            "filename": r"Tools/Scripts/webkitpy/common/watchlist/.*",
         },
     },
     "CC_RULES": {
         # Note: All email addresses listed must be registered with bugzilla.
         # Specifically, [email protected] and [email protected] are
         # two different accounts as far as bugzilla is concerned.
+        "ChromiumGraphics": [ "[email protected]", ],
+        "ChromiumPublicApi": [ "[email protected]", ],
+        "ThreadingFiles|ThreadingUsage": [ "[email protected]", ],
         "WatchListScript": [ "[email protected]", ],
-        "ThreadingFiles|ThreadingUsage": [ "[email protected]", ],
-        "ChromiumGraphics": [ "[email protected]", ],
     },
+    "MESSAGE_RULES": {
+        "ChromiumPublicApi": [ "Please wait for approval from [email protected] before submitting "
+                               "because this patch contains changes to the Chromium public API.", ],
+    },
 }
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to