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

Unified Diff: third_party/closure_compiler/compile.py

Issue 1140593003: Remove ExtraAnnotationNames override in Runner.java (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 7 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: third_party/closure_compiler/compile.py
diff --git a/third_party/closure_compiler/compile.py b/third_party/closure_compiler/compile.py
index 091a8470e3da888fb6a69cfda341c9422e9ea65d..204ed918251e736fe437132bd87b7f161dd5c644 100755
--- a/third_party/closure_compiler/compile.py
+++ b/third_party/closure_compiler/compile.py
@@ -47,14 +47,15 @@ class Checker(object):
"visibility",
]
- # Extra @jsDocAnnotations used when compiling polymer code.
- _POLYMER_EXTRA_ANNOTATIONS = [
+ # Extra @jsDocAnnotations used when compiling Chrome JS.
+ _EXTRA_ANNOTATIONS = [
Dan Beam 2015/05/12 23:09:20 nit: _EXTRA_JSDOC_ANNOTATIONS, remove comment
Jeremy Klein 2015/05/12 23:39:24 Reverting this file's changes.
"attribute",
"status",
"element",
"homepage",
"submodule",
"group",
+ "suppressReceiverCheck",
Tyler Breisacher (Chromium) 2015/05/12 21:39:51 This seems to come from the devtools code. I reall
Jeremy Klein 2015/05/12 23:39:24 Done.
]
_COMMON_CLOSURE_ARGS = [
@@ -67,7 +68,7 @@ class Checker(object):
] + [
"--jscomp_error=%s" % err for err in _COMMON_JSCOMP_ERRORS
] + [
- "--extra_annotation_name=%s" % a for a in _POLYMER_EXTRA_ANNOTATIONS
+ "--extra_annotation_name=%s" % a for a in _EXTRA_ANNOTATIONS
]
# These are the extra flags used when compiling in strict mode.

Powered by Google App Engine
This is Rietveld 408576698