From 2dd54735574b36e3b3ee041a7792644c6d6315d5 Mon Sep 17 00:00:00 2001 From: Tom Anderson Date: Tue, 6 Feb 2018 15:26:25 -0800 Subject: [PATCH] Add target_cpu and target_cpu_only to gclient base config BUG=807986 R=dpranke Change-Id: I6b7e94d489a228c5dde23a9b6c7d6f58ce73b180 Reviewed-on: https://chromium-review.googlesource.com/905285 Reviewed-by: Dirk Pranke Commit-Queue: Thomas Anderson --- recipes/recipe_modules/gclient/config.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/recipes/recipe_modules/gclient/config.py b/recipes/recipe_modules/gclient/config.py index 92e571288..fb068f965 100644 --- a/recipes/recipe_modules/gclient/config.py +++ b/recipes/recipe_modules/gclient/config.py @@ -35,6 +35,8 @@ def BaseConfig(USE_MIRROR=True, CACHE_DIR=None, hooks = List(basestring), target_os = Set(basestring), target_os_only = Single(bool, empty_val=False, required=False), + target_cpu = Set(basestring), + target_cpu_only = Single(bool, empty_val=False, required=False), cache_dir = Static(cache_dir, hidden=False), # If supplied, use this as the source root (instead of the first solution's