diff --git a/recipes/README.recipes.md b/recipes/README.recipes.md index 2f7c8501a..faa987521 100644 --- a/recipes/README.recipes.md +++ b/recipes/README.recipes.md @@ -1008,7 +1008,7 @@ Raises: [DEPS](/recipes/recipe_modules/gclient/examples/full.py#5): [gclient](#recipe_modules-gclient), [recipe\_engine/buildbucket][recipe_engine/recipe_modules/buildbucket], [recipe\_engine/context][recipe_engine/recipe_modules/context], [recipe\_engine/path][recipe_engine/recipe_modules/path], [recipe\_engine/properties][recipe_engine/recipe_modules/properties], [recipe\_engine/step][recipe_engine/recipe_modules/step] -— **def [RunSteps](/recipes/recipe_modules/gclient/examples/full.py#54)(api):** +— **def [RunSteps](/recipes/recipe_modules/gclient/examples/full.py#53)(api):** ### *recipes* / [gclient:tests/diff\_deps](/recipes/recipe_modules/gclient/tests/diff_deps.py) [DEPS](/recipes/recipe_modules/gclient/tests/diff_deps.py#7): [gclient](#recipe_modules-gclient), [recipe\_engine/assertions][recipe_engine/recipe_modules/assertions], [recipe\_engine/buildbucket][recipe_engine/recipe_modules/buildbucket], [recipe\_engine/path][recipe_engine/recipe_modules/path], [recipe\_engine/platform][recipe_engine/recipe_modules/platform], [recipe\_engine/properties][recipe_engine/recipe_modules/properties], [recipe\_engine/raw\_io][recipe_engine/recipe_modules/raw_io] diff --git a/recipes/recipe_modules/gclient/config.py b/recipes/recipe_modules/gclient/config.py index 7ec3209a0..1c5adc3e1 100644 --- a/recipes/recipe_modules/gclient/config.py +++ b/recipes/recipe_modules/gclient/config.py @@ -405,19 +405,6 @@ def gerrit_test_cq_normal(c): soln.name = 'gerrit-test-cq-normal' soln.url = 'https://chromium.googlesource.com/playground/gerrit-cq/normal.git' -@config_ctx() -def angle(c): - soln = c.solutions.add() - soln.name = 'angle' - soln.url = 'https://chromium.googlesource.com/angle/angle.git' - # Standalone developer angle builds want the angle checkout in the same - # directory the .gclient file is in. Bots want it in a directory called - # 'angle'. To make both cases work, the angle DEPS file pulls deps and runs - # hooks relative to the variable "root" which is set to . by default and - # then to 'angle' in the recipes here: - soln.custom_vars = {'angle_root': 'angle'} - c.got_revision_mapping['angle'] = 'got_revision' - @config_ctx() def dawn(c): soln = c.solutions.add() diff --git a/recipes/recipe_modules/gclient/examples/full.py b/recipes/recipe_modules/gclient/examples/full.py index 7aa94f4e5..53cc11fdd 100644 --- a/recipes/recipe_modules/gclient/examples/full.py +++ b/recipes/recipe_modules/gclient/examples/full.py @@ -14,7 +14,6 @@ DEPS = [ TEST_CONFIGS = [ 'android', - 'angle', 'boringssl', 'build_internal', 'build_internal_scripts_slave',