Commit fce7bc9e authored by Andrii Shyshkalov's avatar Andrii Shyshkalov Committed by Commit Bot

Add infradata/config repo to gclient.

This way it'll be discoverable by run_presubmit recipe.

R=vadimsh

Bug: 613739
Change-Id: I84ec3b84292940e74e4d707e4d257eb560004f56
Reviewed-on: https://chromium-review.googlesource.com/1102010Reviewed-by: 's avatarVadim Shtayura <vadimsh@chromium.org>
Commit-Queue: Andrii Shyshkalov <tandrii@chromium.org>
parent 690d8d43
...@@ -755,7 +755,7 @@ like checkout or compile), and some of these tests have failed. ...@@ -755,7 +755,7 @@ like checkout or compile), and some of these tests have failed.
[DEPS](/recipes/recipe_modules/gclient/examples/full.py#5): [gclient](#recipe_modules-gclient), [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] [DEPS](/recipes/recipe_modules/gclient/examples/full.py#5): [gclient](#recipe_modules-gclient), [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]
&mdash; **def [RunSteps](/recipes/recipe_modules/gclient/examples/full.py#47)(api):** &mdash; **def [RunSteps](/recipes/recipe_modules/gclient/examples/full.py#48)(api):**
### *recipes* / [gclient:tests/patch\_project](/recipes/recipe_modules/gclient/tests/patch_project.py) ### *recipes* / [gclient:tests/patch\_project](/recipes/recipe_modules/gclient/tests/patch_project.py)
[DEPS](/recipes/recipe_modules/gclient/tests/patch_project.py#9): [gclient](#recipe_modules-gclient), [recipe\_engine/properties][recipe_engine/recipe_modules/properties] [DEPS](/recipes/recipe_modules/gclient/tests/patch_project.py#9): [gclient](#recipe_modules-gclient), [recipe\_engine/properties][recipe_engine/recipe_modules/properties]
......
...@@ -371,6 +371,13 @@ def infradata_master_manager(c): ...@@ -371,6 +371,13 @@ def infradata_master_manager(c):
del c.got_revision_mapping['infra_internal'] del c.got_revision_mapping['infra_internal']
c.got_revision_mapping['infra-data-master-manager'] = 'got_revision' c.got_revision_mapping['infra-data-master-manager'] = 'got_revision'
@config_ctx()
def infradata_config(c):
soln = c.solutions.add()
soln.name = 'infra-data-config'
soln.url = 'https://chrome-internal.googlesource.com/infradata/config.git'
c.got_revision_mapping['infra-data-config'] = 'got_revision'
@config_ctx() @config_ctx()
def with_branch_heads(c): def with_branch_heads(c):
c.with_branch_heads = True c.with_branch_heads = True
......
...@@ -26,6 +26,7 @@ TEST_CONFIGS = [ ...@@ -26,6 +26,7 @@ TEST_CONFIGS = [
'gyp', 'gyp',
'infra', 'infra',
'infradata_master_manager', 'infradata_master_manager',
'infradata_config',
'internal_deps', 'internal_deps',
'luci_gae', 'luci_gae',
'luci_go', 'luci_go',
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment