Add YouTube version 13.37

Change-Id: I8efcfc19ce8ddf5bd987cd2ccecfb4ddfd9ad09e
diff --git a/build.gradle b/build.gradle
index 7a44d6d..eed9769 100644
--- a/build.gradle
+++ b/build.gradle
@@ -342,6 +342,7 @@
         "youtube/youtube.android_12.10",
         "youtube/youtube.android_12.17",
         "youtube/youtube.android_12.22",
+        "youtube/youtube.android_13.37",
         "proguardsettings",
         "proguard/proguard_internal_159423826",
         "framework",
diff --git a/third_party/youtube/youtube.android_13.37.tar.gz.sha1 b/third_party/youtube/youtube.android_13.37.tar.gz.sha1
new file mode 100644
index 0000000..ffc92a8
--- /dev/null
+++ b/third_party/youtube/youtube.android_13.37.tar.gz.sha1
@@ -0,0 +1 @@
+533819c8e988bfbcdd7bc3dbd17e0d374c4ba9ab
\ No newline at end of file
diff --git a/tools/youtube_data.py b/tools/youtube_data.py
index b7f1ee7..6fdf63a 100644
--- a/tools/youtube_data.py
+++ b/tools/youtube_data.py
@@ -19,6 +19,9 @@
 V12_22_BASE = os.path.join(BASE, 'youtube.android_12.22')
 V12_22_PREFIX = os.path.join(V12_22_BASE, 'YouTubeRelease')
 
+V13_37_BASE = os.path.join(BASE, 'youtube.android_13.37')
+V13_37_PREFIX = os.path.join(V13_37_BASE, 'YouTubeRelease')
+
 # NOTE: we always use android.jar for SDK v25, later we might want to revise it
 #       to use proper android.jar version for each of youtube version separately.
 ANDROID_JAR = os.path.join(THIRD_PARTY, 'android_jar', 'lib-v25', 'android.jar')
@@ -85,4 +88,30 @@
       'min-api' : ANDROID_L_API,
     }
   },
+  '13.37': {
+    'dex' : {
+      'inputs': [os.path.join(V13_37_BASE, 'YouTubeRelease_unsigned.apk')],
+      'pgmap': '%s_proguard.map' % V13_37_PREFIX,
+      'libraries' : [ANDROID_JAR],
+      'min-api' : ANDROID_L_API,
+    },
+    'deploy' : {
+      'inputs': ['%s_deploy.jar' % V13_37_PREFIX],
+      'pgconf': [
+          '%s_proguard.config' % V13_37_PREFIX,
+          '%s/proguardsettings/YouTubeRelease_proguard.config' % THIRD_PARTY],
+      # Build for native multi dex, as Currently R8 cannot meet the main-dex
+      # constraints.
+      #'maindexrules' : [
+      #    os.path.join(V13_37_BASE, 'mainDexClasses.rules'),
+      #    os.path.join(V13_37_BASE, 'main-dex-classes-release-optimized.cfg'),
+      #    os.path.join(V13_37_BASE, 'main_dex_YouTubeRelease_proguard.cfg')],
+      'min-api' : ANDROID_L_API,
+    },
+    'proguarded' : {
+      'inputs': ['%s_proguard.jar' % V13_37_PREFIX],
+      'pgmap': '%s_proguard.map' % V13_37_PREFIX,
+      'min-api' : ANDROID_L_API,
+    }
+  },
 }