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_webapp_files.gypi', | 9 'remoting_webapp_files.gypi', |
10 'app_remoting_webapp_files.gypi', | 10 'app_remoting_webapp_files.gypi', |
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
108 '<(buildtype)', | 108 '<(buildtype)', |
109 '<(version_full)', | 109 '<(version_full)', |
110 '<(output_dir)', | 110 '<(output_dir)', |
111 '<(zip_path)', | 111 '<(zip_path)', |
112 '<(ar_app_manifest_app)', # Manifest template | 112 '<(ar_app_manifest_app)', # Manifest template |
113 'app_remoting', # Web app type | 113 'app_remoting', # Web app type |
114 '<@(ar_webapp_files)', | 114 '<@(ar_webapp_files)', |
115 '<@(ar_generated_html_files)', | 115 '<@(ar_generated_html_files)', |
116 '--locales', | 116 '--locales', |
117 '<@(remoting_webapp_locale_files)', | 117 '<@(remoting_webapp_locale_files)', |
| 118 '--app_features', |
| 119 '>@(_app_features)', |
118 '--jinja_paths', | 120 '--jinja_paths', |
119 '<(DEPTH)/remoting/webapp/app_remoting', | 121 '<(DEPTH)/remoting/webapp/app_remoting', |
120 '<@(remoting_app_id)', | 122 '<@(remoting_app_id)', |
121 '--app_name', | 123 '--app_name', |
122 '<(remoting_app_name)', | 124 '<(remoting_app_name)', |
123 '--app_description', | 125 '--app_description', |
124 '<(remoting_app_description)', | 126 '<(remoting_app_description)', |
125 '--service_environment', | 127 '--service_environment', |
126 '<@(ar_service_environment)', | 128 '<@(ar_service_environment)', |
127 ], | 129 ], |
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
177 # rather than using the extension id. | 179 # rather than using the extension id. |
178 # This is only done for Dev apps because the app-id for Release apps | 180 # This is only done for Dev apps because the app-id for Release apps |
179 # *must* match the extension id. | 181 # *must* match the extension id. |
180 'variables': { | 182 'variables': { |
181 'remoting_app_id': ['--appid', '>(_app_id)'], | 183 'remoting_app_id': ['--appid', '>(_app_id)'], |
182 }, | 184 }, |
183 }], | 185 }], |
184 ], # conditions | 186 ], # conditions |
185 }, # target_defaults | 187 }, # target_defaults |
186 } | 188 } |
OLD | NEW |