Add missing deps to DependenciesPlugin.kt

Change-Id: Ib47d53ec34097e7dd224a3accf32a1976012546c
diff --git a/d8_r8/commonBuildSrc/src/main/kotlin/DependenciesPlugin.kt b/d8_r8/commonBuildSrc/src/main/kotlin/DependenciesPlugin.kt
index 85235fa..3ef8f73 100644
--- a/d8_r8/commonBuildSrc/src/main/kotlin/DependenciesPlugin.kt
+++ b/d8_r8/commonBuildSrc/src/main/kotlin/DependenciesPlugin.kt
@@ -562,6 +562,11 @@
     Paths.get("third_party", "nest", "nest_20180926_7c6cfb.tar.gz.sha1").toFile(),
     DependencyType.X20)
   val proguards = getThirdPartyProguards()
+  val proguardsettings = ThirdPartyDependency(
+    "proguardsettings",
+    Paths.get("third_party", "proguardsettings").toFile(),
+    Paths.get("third_party", "proguardsettings.tar.gz.sha1").toFile(),
+    DependencyType.X20)
   val proto = ThirdPartyDependency(
     "proto",
     Paths.get("third_party", "proto").toFile(),
@@ -625,6 +630,11 @@
     "tivi",
     Paths.get("third_party", "opensource-apps", "tivi").toFile(),
     Paths.get("third_party", "opensource-apps", "tivi.tar.gz.sha1").toFile())
+  val youtube1719 = ThirdPartyDependency(
+    "youtube-17.19",
+    Paths.get("third_party", "youtube", "youtube.android_17.19").toFile(),
+    Paths.get("third_party", "youtube", "youtube.android_17.19.tar.gz.sha1").toFile(),
+    DependencyType.X20)
 }
 
 fun getThirdPartyAndroidJars() : List<ThirdPartyDependency> {