| 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 # File included in remoting_webapp_* targets in remoting_client.gypi | 5 # File included in remoting_webapp_* targets in remoting_client.gypi |
| 6 | 6 |
| 7 { | 7 { |
| 8 'type': 'none', | 8 'type': 'none', |
| 9 'variables': { | 9 'variables': { |
| 10 'extra_files%': [], | 10 'extra_files%': [], |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 { | 27 { |
| 28 'action_name': 'Verify remoting webapp', | 28 'action_name': 'Verify remoting webapp', |
| 29 'inputs': [ | 29 'inputs': [ |
| 30 '<@(remoting_webapp_crd_js_files)', | 30 '<@(remoting_webapp_crd_js_files)', |
| 31 '<@(remoting_webapp_js_proto_files)', | 31 '<@(remoting_webapp_js_proto_files)', |
| 32 ], | 32 ], |
| 33 'outputs': [ | 33 'outputs': [ |
| 34 '<(success_stamp)', | 34 '<(success_stamp)', |
| 35 ], | 35 ], |
| 36 'action': [ | 36 'action': [ |
| 37 'python', 'tools/jscompile.py', | 37 'python', '../third_party/closure_compiler/checker.py', |
| 38 '--strict', |
| 39 '--no-single-file', |
| 40 '--success-stamp', '<(success_stamp)', |
| 38 '<@(remoting_webapp_crd_js_files)', | 41 '<@(remoting_webapp_crd_js_files)', |
| 39 '<@(remoting_webapp_js_proto_files)', | 42 '<@(remoting_webapp_js_proto_files)', |
| 40 '--success-stamp', '<(success_stamp)' | |
| 41 ], | 43 ], |
| 42 }, | 44 }, |
| 43 ], # actions | 45 ], # actions |
| 44 }], | 46 }], |
| 45 ], | 47 ], |
| 46 'actions': [ | 48 'actions': [ |
| 47 { | 49 { |
| 48 'action_name': 'Build Remoting WebApp', | 50 'action_name': 'Build Remoting WebApp', |
| 49 'inputs': [ | 51 'inputs': [ |
| 50 'webapp/build-webapp.py', | 52 'webapp/build-webapp.py', |
| (...skipping 18 matching lines...) Expand all Loading... |
| 69 'webapp/crd/manifest.json.jinja2', | 71 'webapp/crd/manifest.json.jinja2', |
| 70 '<(webapp_type)', | 72 '<(webapp_type)', |
| 71 '<@(generated_html_files)', | 73 '<@(generated_html_files)', |
| 72 '<@(remoting_webapp_crd_files)', | 74 '<@(remoting_webapp_crd_files)', |
| 73 '<@(extra_files)', | 75 '<@(extra_files)', |
| 74 '--locales', '<@(remoting_webapp_locale_files)', | 76 '--locales', '<@(remoting_webapp_locale_files)', |
| 75 ], | 77 ], |
| 76 }, | 78 }, |
| 77 ], | 79 ], |
| 78 } | 80 } |
| OLD | NEW |