From 426e4271da4d68152be1995a0d128bccbfd79dd2 Mon Sep 17 00:00:00 2001 From: "phajdan.jr" Date: Mon, 27 Jun 2016 04:53:10 -0700 Subject: [PATCH] bot_update: add /chrome-internal/trunk/src-internal to RECOGNIZED_PATHS The script already contains references to chrome-internal, and when running under remote_run we have no access to hacky build_internal checkout. BUG=593999, 584079 Review-Url: https://codereview.chromium.org/2101573002 --- recipe_modules/bot_update/resources/bot_update.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/recipe_modules/bot_update/resources/bot_update.py b/recipe_modules/bot_update/resources/bot_update.py index d0a42c0b6..ac4254dd2 100755 --- a/recipe_modules/bot_update/resources/bot_update.py +++ b/recipe_modules/bot_update/resources/bot_update.py @@ -250,6 +250,8 @@ RECOGNIZED_PATHS = { CHROMIUM_SRC_URL, '/chrome/trunk/src/tools/cros.DEPS': CHROMIUM_GIT_HOST + '/chromium/src/tools/cros.DEPS.git', + '/chrome-internal/trunk/src-internal': + 'https://chrome-internal.googlesource.com/chrome/src-internal.git', } RECOGNIZED_PATHS.update(internal_data.get('RECOGNIZED_PATHS', {}))