OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 'type': 'none', | 5 'type': 'none', |
6 'variables': { | 6 'variables': { |
7 'CLOSURE_DIR': '<(DEPTH)/third_party/closure_compiler', | 7 'CLOSURE_DIR': '<(DEPTH)/third_party/closure_compiler', |
8 }, | 8 }, |
9 'actions': [ | 9 'actions': [ |
10 { | 10 { |
(...skipping 19 matching lines...) Expand all Loading... |
30 'outputs': [ | 30 'outputs': [ |
31 '<(out_file)', | 31 '<(out_file)', |
32 ], | 32 ], |
33 'action': [ | 33 'action': [ |
34 'python', | 34 'python', |
35 '<(CLOSURE_DIR)/checker.py', | 35 '<(CLOSURE_DIR)/checker.py', |
36 '<(source_file)', | 36 '<(source_file)', |
37 '--depends', '<@(depends)', | 37 '--depends', '<@(depends)', |
38 '--externs', '<@(externs)', | 38 '--externs', '<@(externs)', |
39 '--out_file', '<(out_file)', | 39 '--out_file', '<(out_file)', |
| 40 # Add '--verbose', for glorious log spam. |
40 ], | 41 ], |
41 'message': 'Compiling <(source_file)', | 42 'message': 'Compiling <(source_file)', |
42 } | 43 } |
43 ], | 44 ], |
44 } | 45 } |
OLD | NEW |