| 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 { | 5 { |
| 6 'targets': [ | 6 'targets': [ |
| 7 { | 7 { |
| 8 # GN version: //remoting/client | 8 # GN version: //remoting/client |
| 9 'target_name': 'remoting_client', | 9 'target_name': 'remoting_client', |
| 10 'type': 'static_library', | 10 'type': 'static_library', |
| (...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 89 'outputs': [ | 89 'outputs': [ |
| 90 '<(SHARED_INTERMEDIATE_DIR)/remoting/message_window.html', | 90 '<(SHARED_INTERMEDIATE_DIR)/remoting/message_window.html', |
| 91 ], | 91 ], |
| 92 'action': [ | 92 'action': [ |
| 93 'python', 'webapp/build-html.py', | 93 'python', 'webapp/build-html.py', |
| 94 '<(SHARED_INTERMEDIATE_DIR)/remoting/message_window.html', | 94 '<(SHARED_INTERMEDIATE_DIR)/remoting/message_window.html', |
| 95 '<(remoting_webapp_template_message_window)', | 95 '<(remoting_webapp_template_message_window)', |
| 96 '--js', '<@(remoting_webapp_message_window_html_all_js_files)', | 96 '--js', '<@(remoting_webapp_message_window_html_all_js_files)', |
| 97 ], | 97 ], |
| 98 }, | 98 }, |
| 99 { |
| 100 'action_name': 'Build Remoting Webapp public_session.html', |
| 101 'inputs': [ |
| 102 'webapp/build-html.py', |
| 103 '<(remoting_webapp_template_public_session)', |
| 104 ], |
| 105 'outputs': [ |
| 106 '<(SHARED_INTERMEDIATE_DIR)/remoting/public_session.html', |
| 107 ], |
| 108 'action': [ |
| 109 'python', 'webapp/build-html.py', |
| 110 '<(SHARED_INTERMEDIATE_DIR)/remoting/public_session.html', |
| 111 '<(remoting_webapp_template_public_session)', |
| 112 '--template-dir', '<(DEPTH)/remoting', |
| 113 '--templates', '<@(remoting_webapp_public_session_template_files)', |
| 114 '--js', |
| 115 '<@(remoting_webapp_public_session_html_all_js_files)', |
| 116 ], |
| 117 }, |
| 99 ], # end of actions | 118 ], # end of actions |
| 100 }, # end of target 'remoting_webapp_html' | 119 }, # end of target 'remoting_webapp_html' |
| 101 | 120 |
| 102 { | 121 { |
| 103 # GN version: //remoting/webapp:credits | 122 # GN version: //remoting/webapp:credits |
| 104 'target_name': 'remoting_client_credits', | 123 'target_name': 'remoting_client_credits', |
| 105 'type': 'none', | 124 'type': 'none', |
| 106 'actions': [ | 125 'actions': [ |
| 107 { | 126 { |
| 108 'action_name': 'Build remoting client credits', | 127 'action_name': 'Build remoting client credits', |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 154 'extra_files': [ | 173 'extra_files': [ |
| 155 '<(PRODUCT_DIR)/remoting_client_plugin_newlib.pexe.debug', | 174 '<(PRODUCT_DIR)/remoting_client_plugin_newlib.pexe.debug', |
| 156 ], | 175 ], |
| 157 }, | 176 }, |
| 158 }], | 177 }], |
| 159 ], | 178 ], |
| 160 'includes': [ 'remoting_webapp.gypi', ], | 179 'includes': [ 'remoting_webapp.gypi', ], |
| 161 }, # end of target 'remoting_webapp' | 180 }, # end of target 'remoting_webapp' |
| 162 ], # end of targets | 181 ], # end of targets |
| 163 } | 182 } |
| OLD | NEW |