| Index: remoting/tools/verify_resources.py
|
| diff --git a/remoting/tools/verify_resources.py b/remoting/tools/verify_resources.py
|
| index 871c0faabc1e04bc8c2f37ff8013d4014e1d2eb3..f86f2036a9a276d5780e0f9b6891c45d0dce1756 100755
|
| --- a/remoting/tools/verify_resources.py
|
| +++ b/remoting/tools/verify_resources.py
|
| @@ -158,6 +158,8 @@ def main():
|
| # because it requires annotating and parsing Android XML layout files.
|
| # For now, exclude Android strings from this check.
|
| for tag in non_android_resources:
|
| + if tag.endswith("_GENERATED_AT_RUNTIME"):
|
| + continue
|
| if tag not in used_tags:
|
| print ('%s/%s:0: warning: %s is defined but not used') % \
|
| (os.getcwd(), sys.argv[2], tag)
|
|
|