From 15b586a4932a5760cbff9478739d19d660e69b19 Mon Sep 17 00:00:00 2001 From: Nodir Turakulov Date: Tue, 18 Sep 2018 23:33:19 +0000 Subject: [PATCH] Remove PATCH_PROJECT Remove PATCH_PROJECT from gclient config. It is not used. R=tandrii@chromium.org Bug: 694348 Change-Id: I56e4aefbe5e9b23296553bb61f878d6426197fa7 Reviewed-on: https://chromium-review.googlesource.com/1232873 Commit-Queue: Nodir Turakulov Commit-Queue: Robbie Iannucci Auto-Submit: Nodir Turakulov Reviewed-by: Robbie Iannucci --- recipes/recipe_modules/gclient/config.py | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/recipes/recipe_modules/gclient/config.py b/recipes/recipe_modules/gclient/config.py index 8e2b52a66..028b8de8d 100644 --- a/recipes/recipe_modules/gclient/config.py +++ b/recipes/recipe_modules/gclient/config.py @@ -11,8 +11,7 @@ from . import api as gclient_api def BaseConfig(USE_MIRROR=True, CACHE_DIR=None, - PATCH_PROJECT=None, BUILDSPEC_VERSION=None, - **_kwargs): + BUILDSPEC_VERSION=None, **_kwargs): cache_dir = str(CACHE_DIR) if CACHE_DIR else None return ConfigGroup( solutions = ConfigList( @@ -105,9 +104,6 @@ def BaseConfig(USE_MIRROR=True, CACHE_DIR=None, disable_syntax_validation = Single(bool, empty_val=False, required=False), USE_MIRROR = Static(bool(USE_MIRROR)), - # TODO(tandrii): remove PATCH_PROJECT field. - # DON'T USE THIS. WILL BE REMOVED. - PATCH_PROJECT = Static(str(PATCH_PROJECT), hidden=True), BUILDSPEC_VERSION= Static(BUILDSPEC_VERSION, hidden=True), )