From 3f1ab05820af5b675682e9d9ad2bf2910801d768 Mon Sep 17 00:00:00 2001 From: Andrii Shyshkalov Date: Wed, 11 Oct 2017 18:47:52 -0700 Subject: [PATCH] Fix gclient config of slave.DEPS and internal.DEPS. R=smut@chromium.org Recipe-Nontrivial-Roll: build Change-Id: If90d6b172c3cd67ca57ad35345a9988e91da2345 Reviewed-on: https://chromium-review.googlesource.com/714776 Commit-Queue: Andrii Shyshkalov Reviewed-by: smut --- recipes/recipe_modules/gclient/config.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/recipes/recipe_modules/gclient/config.py b/recipes/recipe_modules/gclient/config.py index f3e48d211..3e483d4b2 100644 --- a/recipes/recipe_modules/gclient/config.py +++ b/recipes/recipe_modules/gclient/config.py @@ -219,26 +219,26 @@ def build_internal_scripts_slave(c): @config_ctx() def master_deps(c): s = c.solutions.add() - s.name = 'build_internal/master.DEPS' + s.name = 'master.DEPS' s.url = ('https://chrome-internal.googlesource.com/' 'chrome/tools/build/master.DEPS.git') - c.got_revision_mapping['build_internal/master.DEPS'] = 'got_revision' + c.got_revision_mapping['master.DEPS'] = 'got_revision' @config_ctx() def slave_deps(c): s = c.solutions.add() - s.name = 'build_internal/slave.DEPS' + s.name = 'slave.DEPS' s.url = ('https://chrome-internal.googlesource.com/' 'chrome/tools/build/slave.DEPS.git') - c.got_revision_mapping['build_internal/slave.DEPS'] = 'got_revision' + c.got_revision_mapping['slave.DEPS'] = 'got_revision' @config_ctx() def internal_deps(c): s = c.solutions.add() - s.name = 'build_internal/internal.DEPS' + s.name = 'internal.DEPS' s.url = ('https://chrome-internal.googlesource.com/' 'chrome/tools/build/internal.DEPS.git') - c.got_revision_mapping['build_internal/internal.DEPS'] = 'got_revision' + c.got_revision_mapping['internal.DEPS'] = 'got_revision' @config_ctx() def pdfium(c):