| 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 'includes': [ | 6 'includes': [ |
| 7 'remoting_version.gypi', | 7 'remoting_version.gypi', |
| 8 'remoting_locales.gypi', | 8 'remoting_locales.gypi', |
| 9 'remoting_options.gypi', | 9 'remoting_options.gypi', |
| 10 'remoting_webapp_files.gypi', | 10 'remoting_webapp_files.gypi', |
| (...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 124 '<(DEPTH)/remoting/webapp/app_remoting', | 124 '<(DEPTH)/remoting/webapp/app_remoting', |
| 125 '<@(remoting_app_id)', | 125 '<@(remoting_app_id)', |
| 126 '--app_name', | 126 '--app_name', |
| 127 '<(remoting_app_name)', | 127 '<(remoting_app_name)', |
| 128 '--app_description', | 128 '--app_description', |
| 129 '<(remoting_app_description)', | 129 '<(remoting_app_description)', |
| 130 '--app_capabilities', | 130 '--app_capabilities', |
| 131 '>@(_app_capabilities)', | 131 '>@(_app_capabilities)', |
| 132 '--service_environment', | 132 '--service_environment', |
| 133 '<@(ar_service_environment)', | 133 '<@(ar_service_environment)', |
| 134 '--manifest_key', |
| 135 '>@(_manifest_key)', |
| 136 '--app_client_id', |
| 137 '>@(_app_client_id)', |
| 134 ], | 138 ], |
| 135 }, | 139 }, |
| 136 { | 140 { |
| 137 'action_name': 'Build ">(ar_app_name)" main.html', | 141 'action_name': 'Build ">(ar_app_name)" main.html', |
| 138 'inputs': [ | 142 'inputs': [ |
| 139 '<(DEPTH)/remoting/webapp/build-html.py', | 143 '<(DEPTH)/remoting/webapp/build-html.py', |
| 140 '<(ar_main_template)', | 144 '<(ar_main_template)', |
| 141 '<@(ar_main_template_files)', | 145 '<@(ar_main_template_files)', |
| 142 ], | 146 ], |
| 143 'outputs': [ | 147 'outputs': [ |
| (...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 217 # rather than using the extension id. | 221 # rather than using the extension id. |
| 218 # This is only done for Dev apps because the app-id for Release apps | 222 # This is only done for Dev apps because the app-id for Release apps |
| 219 # *must* match the extension id. | 223 # *must* match the extension id. |
| 220 'variables': { | 224 'variables': { |
| 221 'remoting_app_id': ['--appid', '>(_app_id)'], | 225 'remoting_app_id': ['--appid', '>(_app_id)'], |
| 222 }, | 226 }, |
| 223 }], | 227 }], |
| 224 ], # conditions | 228 ], # conditions |
| 225 }, # target_defaults | 229 }, # target_defaults |
| 226 } | 230 } |
| OLD | NEW |