[task scheduler] Add eskia to PROJECT_REPO_MAPPING

Change-Id: I494736d822675fc68b20f0bd413f6dc446aed74c
Reviewed-on: https://skia-review.googlesource.com/c/buildbot/+/370744
Reviewed-by: Ravi Mistry <rmistry@google.com>
Commit-Queue: Eric Boren <borenet@google.com>
diff --git a/go/common/common.go b/go/common/common.go
index 65d0e6d..be7a05c 100644
--- a/go/common/common.go
+++ b/go/common/common.go
@@ -27,6 +27,7 @@
 	REPO_ANGLE              = "https://chromium.googlesource.com/angle/angle.git"
 	REPO_CHROMIUM           = "https://chromium.googlesource.com/chromium/src.git"
 	REPO_DEPOT_TOOLS        = "https://chromium.googlesource.com/chromium/tools/depot_tools.git"
+	REPO_ESKIA              = "https://skia.googlesource.com/eskia.git"
 	REPO_LOTTIE_CI          = "https://skia.googlesource.com/lottie-ci.git"
 	REPO_PDFIUM             = "https://pdfium.googlesource.com/pdfium.git"
 	REPO_SKCMS              = "https://skia.googlesource.com/skcms.git"
@@ -41,16 +42,13 @@
 )
 
 var (
-	PUBLIC_REPOS  = []string{REPO_SKIA, REPO_SKIA_INFRA, REPO_SKCMS, REPO_LOTTIE_CI}
-	PRIVATE_REPOS = []string{REPO_SKIA_INTERNAL, REPO_SKIA_INTERNAL_TEST}
-	ALL_REPOS     = append(PUBLIC_REPOS, PRIVATE_REPOS...)
-
 	// PROJECT_REPO_MAPPING is a mapping of project names to repo URLs. It
 	// is filled in during init().
 	PROJECT_REPO_MAPPING = map[string]string{}
 
 	// REPO_PROJECT_MAPPING is a mapping of repo URLs to project names.
 	REPO_PROJECT_MAPPING = map[string]string{
+		REPO_ESKIA:              "eskia",
 		REPO_LOTTIE_CI:          "lottie-ci",
 		REPO_SKCMS:              "skcms",
 		REPO_SKIA:               "skia",