diff --git a/recipes/recipe_modules/gclient/config.py b/recipes/recipe_modules/gclient/config.py index db5ab5e42..4fec3da11 100644 --- a/recipes/recipe_modules/gclient/config.py +++ b/recipes/recipe_modules/gclient/config.py @@ -150,6 +150,14 @@ def wasm_llvm(c): m['src'] = 'got_waterfall_revision' c.revisions['src'] = 'origin/master' +@config_ctx() +def emscripten_releases(c): + s = c.solutions.add() + s.name = 'emscripten_releases' + s.url = ChromiumGitURL(c, 'emscripten-releases.git') + m = c.got_revision_mapping + m['emscripten_releases'] = 'got_revision' + @config_ctx() def gyp(c): s = c.solutions.add() diff --git a/recipes/recipe_modules/gclient/examples/full.py b/recipes/recipe_modules/gclient/examples/full.py index 1721b0374..c93821691 100644 --- a/recipes/recipe_modules/gclient/examples/full.py +++ b/recipes/recipe_modules/gclient/examples/full.py @@ -24,6 +24,7 @@ TEST_CONFIGS = [ 'dart', 'dawn', 'disable_syntax_validation', + 'emscripten_releases', 'expect_tests', 'gerrit_test_cq_normal', 'gyp',