From 29361ca11fa37bfe9961af093edaf60c37d2db96 Mon Sep 17 00:00:00 2001 From: Corentin Wallez Date: Wed, 22 Aug 2018 09:23:33 +0000 Subject: [PATCH] Add standalone dawn gclient config BUG=chromium:875245 Change-Id: Ieed7554c55bab2bc5820cf4ffbbf57b72492b90f Reviewed-on: https://chromium-review.googlesource.com/1183432 Reviewed-by: Andrii Shyshkalov Commit-Queue: Corentin Wallez --- recipes/recipe_modules/gclient/config.py | 6 ++++++ recipes/recipe_modules/gclient/examples/full.py | 1 + 2 files changed, 7 insertions(+) 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',