Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(186)

Unified Diff: remoting/tools/verify_resources.py

Issue 882463003: Basic webapp UI for host-offline-reason. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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)

Powered by Google App Engine
This is Rietveld 408576698