From b4a79690367881c427c9c5adf614823a01fc9990 Mon Sep 17 00:00:00 2001 From: Michael Achenbach Date: Mon, 8 May 2017 11:56:01 +0200 Subject: [PATCH] Add back helper method still used in build repo Follow up fix for: https://chromium-review.googlesource.com/c/497432 TBR=tandrii@chromium.org Bug: 717457 Change-Id: I66fb86f46cbdc6d9e34ce656541760af313beea8 Reviewed-on: https://chromium-review.googlesource.com/497410 Reviewed-by: Michael Achenbach Commit-Queue: Michael Achenbach --- recipes/recipe_modules/gclient/config.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/recipes/recipe_modules/gclient/config.py b/recipes/recipe_modules/gclient/config.py index d38f185b9..73b650282 100644 --- a/recipes/recipe_modules/gclient/config.py +++ b/recipes/recipe_modules/gclient/config.py @@ -102,6 +102,10 @@ config_ctx = config_item_context(BaseConfig) def ChromiumGitURL(_c, *pieces): return '/'.join(('https://chromium.googlesource.com',) + pieces) +# TODO(phajdan.jr): Move to proper repo and add coverage. +def ChromeInternalGitURL(_c, *pieces): # pragma: no cover + return '/'.join(('https://chrome-internal.googlesource.com',) + pieces) + @config_ctx() def android(c): c.target_os.add('android')