chiark / gitweb /
Detect proprietary youtube api lib
authorCiaran Gultnieks <ciaran@ciarang.com>
Wed, 9 Oct 2013 08:43:02 +0000 (09:43 +0100)
committerCiaran Gultnieks <ciaran@ciarang.com>
Wed, 9 Oct 2013 08:48:41 +0000 (09:48 +0100)
fdroidserver/common.py

index 809dd326f338e002191ad2b72685c53414acfebb..3e56dd10ae53c073f2dcf857a7e0c42c2616cea9 100644 (file)
@@ -1514,7 +1514,7 @@ def scan_source(build_dir, root_dir, thisbuild):
 
     problems = []
 
-    # Common known non-free blobs:
+    # Common known non-free blobs (always lower case):
     usual_suspects = ['flurryagent',
                       'paypal_mpl',
                       'libgoogleanalytics',
@@ -1524,7 +1524,8 @@ def scan_source(build_dir, root_dir, thisbuild):
                       'google-play-services',
                       'crittercism',
                       'heyzap',
-                      'jpct-ae']
+                      'jpct-ae',
+                      'youtubeandroidplayerapi']
 
     if 'scanignore' in thisbuild:
         ignore = [p.strip() for p in thisbuild['scanignore'].split(';')]