Chromium Code Reviews| 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 | 5 # GYP version: third_party/closure_compiler/closure_args.gypi |
| 6 closure_args = [ | 6 default_closure_args = [ |
|
aberent
2016/08/02 10:52:24
Would something like "checking_closure_args" be be
Dan Beam
2016/08/02 19:36:33
it makes sense to split this by "checking" or not
| |
| 7 "compilation_level=SIMPLE_OPTIMIZATIONS", | 7 "compilation_level=SIMPLE_OPTIMIZATIONS", |
| 8 | 8 |
| 9 "extra_annotation_name=attribute", | 9 "extra_annotation_name=attribute", |
| 10 "extra_annotation_name=demo", | 10 "extra_annotation_name=demo", |
| 11 "extra_annotation_name=element", | 11 "extra_annotation_name=element", |
| 12 "extra_annotation_name=group", | 12 "extra_annotation_name=group", |
| 13 "extra_annotation_name=hero", | 13 "extra_annotation_name=hero", |
| 14 "extra_annotation_name=homepage", | 14 "extra_annotation_name=homepage", |
| 15 "extra_annotation_name=status", | 15 "extra_annotation_name=status", |
| 16 "extra_annotation_name=submodule", | 16 "extra_annotation_name=submodule", |
| (...skipping 22 matching lines...) Expand all Loading... | |
| 39 | 39 |
| 40 "polymer_pass", | 40 "polymer_pass", |
| 41 | 41 |
| 42 "source_map_format=V3", | 42 "source_map_format=V3", |
| 43 ] | 43 ] |
| 44 | 44 |
| 45 default_disabled_closure_args = [ | 45 default_disabled_closure_args = [ |
| 46 "jscomp_off=duplicate", | 46 "jscomp_off=duplicate", |
| 47 "jscomp_off=misplacedTypeAnnotation", | 47 "jscomp_off=misplacedTypeAnnotation", |
| 48 ] | 48 ] |
| OLD | NEW |