diff --git a/recipes/recipe_modules/gclient/config.py b/recipes/recipe_modules/gclient/config.py index e16d9a02d8..37a9f8d9be 100644 --- a/recipes/recipe_modules/gclient/config.py +++ b/recipes/recipe_modules/gclient/config.py @@ -412,3 +412,9 @@ def angle(c): soln = c.solutions.add() soln.name = 'angle' soln.url = 'https://chromium.googlesource.com/angle/angle.git' + +@config_ctx() +def dawn(c): + soln = c.solutions.add() + soln.name = 'dawn' + soln.url = 'https://dawn.googlesource.com/dawn.git' diff --git a/recipes/recipe_modules/gclient/examples/full.py b/recipes/recipe_modules/gclient/examples/full.py index 04c4e9bd30..13dabbafef 100644 --- a/recipes/recipe_modules/gclient/examples/full.py +++ b/recipes/recipe_modules/gclient/examples/full.py @@ -21,6 +21,7 @@ TEST_CONFIGS = [ 'crashpad', 'custom_tabs_client', 'dart', + 'dawn', 'disable_syntax_validation', 'expect_tests', 'gerrit_test_cq_normal',