| OLD | NEW |
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 { | 5 { |
| 6 'variables': { | 6 'variables': { |
| 7 'chromium_code': 1, | 7 'chromium_code': 1, |
| 8 | 8 |
| 9 # Set this to run the jscompile checks after building the webapp. | 9 # Set this to run the jscompile checks after building the webapp. |
| 10 'run_jscompile%': 0, | 10 'run_jscompile%': 0, |
| (...skipping 200 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 211 ['run_jscompile != 0', { | 211 ['run_jscompile != 0', { |
| 212 'variables': { | 212 'variables': { |
| 213 'success_stamp': '<(PRODUCT_DIR)/remoting_webapp_jscompile.stamp', | 213 'success_stamp': '<(PRODUCT_DIR)/remoting_webapp_jscompile.stamp', |
| 214 }, | 214 }, |
| 215 'actions': [ | 215 'actions': [ |
| 216 { | 216 { |
| 217 'action_name': 'Verify remoting webapp', | 217 'action_name': 'Verify remoting webapp', |
| 218 'inputs': [ | 218 'inputs': [ |
| 219 '<@(remoting_webapp_js_files)', | 219 '<@(remoting_webapp_js_files)', |
| 220 '<@(remoting_webapp_js_proto_files)', | 220 '<@(remoting_webapp_js_proto_files)', |
| 221 # Include zip as input so that this action is run after the buil
d. | |
| 222 '<(zip_path)', | |
| 223 ], | 221 ], |
| 224 'outputs': [ | 222 'outputs': [ |
| 225 '<(success_stamp)', | 223 '<(success_stamp)', |
| 226 ], | 224 ], |
| 227 'action': [ | 225 'action': [ |
| 228 'python', 'tools/htmlcompile.py', | 226 'python', 'tools/jscompile.py', |
| 229 '<(output_dir)/main.html', | 227 '<@(remoting_webapp_js_files)', |
| 230 '<@(remoting_webapp_js_proto_files)', | 228 '<@(remoting_webapp_js_proto_files)', |
| 231 '--success-stamp', | 229 '--success-stamp', |
| 232 '<(success_stamp)' | 230 '<(success_stamp)' |
| 233 ], | 231 ], |
| 234 }, | 232 }, |
| 235 ], # actions | 233 ], # actions |
| 236 }], | 234 }], |
| 237 ], | 235 ], |
| 238 'actions': [ | 236 'actions': [ |
| 239 { | 237 { |
| (...skipping 388 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 628 'protocol/v2_authenticator.h', | 626 'protocol/v2_authenticator.h', |
| 629 'protocol/video_reader.cc', | 627 'protocol/video_reader.cc', |
| 630 'protocol/video_reader.h', | 628 'protocol/video_reader.h', |
| 631 'protocol/video_stub.h', | 629 'protocol/video_stub.h', |
| 632 'protocol/video_writer.cc', | 630 'protocol/video_writer.cc', |
| 633 'protocol/video_writer.h', | 631 'protocol/video_writer.h', |
| 634 ], | 632 ], |
| 635 }, # end of target 'remoting_protocol' | 633 }, # end of target 'remoting_protocol' |
| 636 ], # end of targets | 634 ], # end of targets |
| 637 } | 635 } |
| OLD | NEW |