Commit ea11cc31 authored by Gavin Mak's avatar Gavin Mak Committed by LUCI CQ

Remove apply_patch_on_gclient property

This property isn't used anymore.

Bug: 891917
Change-Id: I005f5b320cb33afddb1d3272f3f626542996bb62
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/tools/depot_tools/+/3766100Reviewed-by: 's avatarAravind Vasudevan <aravindvasudev@google.com>
Commit-Queue: Gavin Mak <gavinmak@google.com>
Reviewed-by: 's avatarJoanna Wang <jojwang@chromium.org>
parent 8168f767
...@@ -22,7 +22,6 @@ DEPS = [ ...@@ -22,7 +22,6 @@ DEPS = [
] ]
from recipe_engine.recipe_api import Property from recipe_engine.recipe_api import Property
from recipe_engine.config import ConfigGroup, Single
PROPERTIES = { PROPERTIES = {
# Gerrit patches will have all properties about them prefixed with patch_. # Gerrit patches will have all properties about them prefixed with patch_.
...@@ -32,10 +31,6 @@ PROPERTIES = { ...@@ -32,10 +31,6 @@ PROPERTIES = {
'$depot_tools/bot_update': Property( '$depot_tools/bot_update': Property(
help='Properties specific to bot_update module.', help='Properties specific to bot_update module.',
param_name='properties', param_name='properties',
kind=ConfigGroup(
# Whether we should do the patching in gclient instead of bot_update
apply_patch_on_gclient=Single(bool),
),
default={}, default={},
), ),
} }
...@@ -216,10 +216,6 @@ def GenTests(api): ...@@ -216,10 +216,6 @@ def GenTests(api):
api.test('tryjob_gerrit_angle') + api.test('tryjob_gerrit_angle') +
try_build(git_repo='https://chromium.googlesource.com/angle/angle') try_build(git_repo='https://chromium.googlesource.com/angle/angle')
) )
yield (
api.test('no_apply_patch_on_gclient') +
try_build(git_repo='https://chromium.googlesource.com/angle/angle')
)
yield ( yield (
api.test('tryjob_gerrit_v8_feature_branch') + api.test('tryjob_gerrit_v8_feature_branch') +
try_build(git_repo='https://chromium.googlesource.com/v8/v8') + try_build(git_repo='https://chromium.googlesource.com/v8/v8') +
......
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