diff --git a/recipes/recipe_modules/gclient/config.py b/recipes/recipe_modules/gclient/config.py index c383d695a..c43edf7df 100644 --- a/recipes/recipe_modules/gclient/config.py +++ b/recipes/recipe_modules/gclient/config.py @@ -418,3 +418,11 @@ def dawn(c): soln.name = 'dawn' soln.url = 'https://dawn.googlesource.com/dawn.git' c.got_revision_mapping['dawn'] = 'got_revision' + +@config_ctx() +def celab(c): + soln = c.solutions.add() + # soln.name must match the repo name for `dep` to work properly + soln.name = 'cel' + soln.url = 'https://chromium.googlesource.com/enterprise/cel.git' + c.got_revision_mapping['cel'] = 'got_revision' diff --git a/recipes/recipe_modules/gclient/examples/full.py b/recipes/recipe_modules/gclient/examples/full.py index e95adb8ea..1721b0374 100644 --- a/recipes/recipe_modules/gclient/examples/full.py +++ b/recipes/recipe_modules/gclient/examples/full.py @@ -18,6 +18,7 @@ TEST_CONFIGS = [ 'build_internal', 'build_internal_scripts_slave', 'catapult', + 'celab', 'crashpad', 'custom_tabs_client', 'dart',