Commit e60529fb authored by Sam Maier's avatar Sam Maier Committed by Commit Bot

Android resources: skipping 'skip' XML element

Bug: 1139446
Change-Id: Ief7f51ce5a22644712bc2edb5fe33eaec61215f2
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2522913
Auto-Submit: Sam Maier <smaier@chromium.org>
Commit-Queue: Mohamed Heikal <mheikal@chromium.org>
Reviewed-by: default avatarMohamed Heikal <mheikal@chromium.org>
Cr-Commit-Position: refs/heads/master@{#825131}
parent 13b042dc
......@@ -85,6 +85,9 @@ class RTxtGenerator(object):
if child.tag == 'eat-comment':
# eat-comment is just a dummy documentation element.
continue
if child.tag == 'skip':
# skip is just a dummy element.
continue
if child.tag == 'declare-styleable':
ret.update(self._ParseDeclareStyleable(child))
else:
......
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