| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 # GYP version: third_party/closure_compiler/closure_args.gypi | |
| 6 | |
| 7 # Args for all uses of the closure compiler | 5 # Args for all uses of the closure compiler |
| 8 common_closure_args = [ | 6 common_closure_args = [ |
| 9 "extra_annotation_name=attribute", | 7 "extra_annotation_name=attribute", |
| 10 "extra_annotation_name=demo", | 8 "extra_annotation_name=demo", |
| 11 "extra_annotation_name=element", | 9 "extra_annotation_name=element", |
| 12 "extra_annotation_name=group", | 10 "extra_annotation_name=group", |
| 13 "extra_annotation_name=hero", | 11 "extra_annotation_name=hero", |
| 14 "extra_annotation_name=homepage", | 12 "extra_annotation_name=homepage", |
| 15 "extra_annotation_name=status", | 13 "extra_annotation_name=status", |
| 16 "extra_annotation_name=submodule", | 14 "extra_annotation_name=submodule", |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 55 "language_out=ECMASCRIPT6", | 53 "language_out=ECMASCRIPT6", |
| 56 ] | 54 ] |
| 57 | 55 |
| 58 # For compatibility with old uses. | 56 # For compatibility with old uses. |
| 59 default_closure_args = common_closure_args + checking_closure_args | 57 default_closure_args = common_closure_args + checking_closure_args |
| 60 | 58 |
| 61 default_disabled_closure_args = [ | 59 default_disabled_closure_args = [ |
| 62 "jscomp_off=duplicate", | 60 "jscomp_off=duplicate", |
| 63 "jscomp_off=misplacedTypeAnnotation", | 61 "jscomp_off=misplacedTypeAnnotation", |
| 64 ] | 62 ] |
| OLD | NEW |