Chromium Code Reviews| 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 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 138 '<(DEPTH)/remoting/webapp/app_remoting', | 138 '<(DEPTH)/remoting/webapp/app_remoting', |
| 139 '<@(remoting_app_id)', | 139 '<@(remoting_app_id)', |
| 140 '--app_name', | 140 '--app_name', |
| 141 '<(remoting_app_name)', | 141 '<(remoting_app_name)', |
| 142 '--app_description', | 142 '--app_description', |
| 143 '<(remoting_app_description)', | 143 '<(remoting_app_description)', |
| 144 '--app_capabilities', | 144 '--app_capabilities', |
| 145 '>@(_app_capabilities)', | 145 '>@(_app_capabilities)', |
| 146 '--service_environment', | 146 '--service_environment', |
| 147 '<@(ar_service_environment)', | 147 '<@(ar_service_environment)', |
| 148 '--use_gcd', '<(remoting_use_gcd)', | |
|
Sergey Ulanov
2015/03/25 18:56:43
I don't think we need this for app remoting. They
John Williams
2015/03/25 20:32:19
Done.
| |
| 148 ], | 149 ], |
| 149 }, | 150 }, |
| 150 { | 151 { |
| 151 'action_name': 'Build ">(ar_app_name)" main.html', | 152 'action_name': 'Build ">(ar_app_name)" main.html', |
| 152 'inputs': [ | 153 'inputs': [ |
| 153 '<(DEPTH)/remoting/webapp/build-html.py', | 154 '<(DEPTH)/remoting/webapp/build-html.py', |
| 154 '<(ar_main_template)', | 155 '<(ar_main_template)', |
| 155 '<@(ar_main_template_files)', | 156 '<@(ar_main_template_files)', |
| 156 ], | 157 ], |
| 157 'outputs': [ | 158 'outputs': [ |
| (...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 231 # rather than using the extension id. | 232 # rather than using the extension id. |
| 232 # This is only done for Dev apps because the app-id for Release apps | 233 # This is only done for Dev apps because the app-id for Release apps |
| 233 # *must* match the extension id. | 234 # *must* match the extension id. |
| 234 'variables': { | 235 'variables': { |
| 235 'remoting_app_id': ['--appid', '>(_app_id)'], | 236 'remoting_app_id': ['--appid', '>(_app_id)'], |
| 236 }, | 237 }, |
| 237 }], | 238 }], |
| 238 ], # conditions | 239 ], # conditions |
| 239 }, # target_defaults | 240 }, # target_defaults |
| 240 } | 241 } |
| OLD | NEW |