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 20 matching lines...) Expand all Loading... |
31 'outputs': [ | 31 'outputs': [ |
32 '<(out_file)', | 32 '<(out_file)', |
33 ], | 33 ], |
34 'action': [ | 34 'action': [ |
35 'python', | 35 'python', |
36 '<(CLOSURE_DIR)/checker.py', | 36 '<(CLOSURE_DIR)/checker.py', |
37 '<(source_file)', | 37 '<(source_file)', |
38 '--depends', '<@(depends)', | 38 '--depends', '<@(depends)', |
39 '--externs', '<@(externs)', | 39 '--externs', '<@(externs)', |
40 '--out_file', '<(out_file)', | 40 '--out_file', '<(out_file)', |
41 # Add '--verbose', for glorious log spam. | 41 # Add '--verbose' for make glorious log spam of Closure compiler. |
42 ], | 42 ], |
43 'message': 'Compiling <(source_file)', | 43 'message': 'Compiling <(source_file)', |
44 } | 44 } |
45 ], | 45 ], |
46 } | 46 } |
OLD | NEW |