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 # File included in remoting_webapp_* targets in remoting_client.gypi | 5 # File included in remoting_webapp_* targets in remoting_client.gypi |
6 | 6 |
7 { | 7 { |
8 'type': 'none', | 8 'type': 'none', |
9 'variables': { | 9 'variables': { |
10 'include_host_plugin%': 0, | 10 'include_host_plugin%': 0, |
(...skipping 17 matching lines...) Expand all Loading... |
28 'plugin_args': [ | 28 'plugin_args': [ |
29 '--locales', '<@(remoting_host_locale_files)', | 29 '--locales', '<@(remoting_host_locale_files)', |
30 '--plugin', '<(plugin_path)', | 30 '--plugin', '<(plugin_path)', |
31 ], | 31 ], |
32 }, | 32 }, |
33 }, { | 33 }, { |
34 'variables': { | 34 'variables': { |
35 'plugin_args': [], | 35 'plugin_args': [], |
36 }, | 36 }, |
37 }], | 37 }], |
| 38 ['webapp_type=="v2_pnacl"', { |
| 39 'dependencies': [ |
| 40 'remoting_nacl.gyp:remoting_client_plugin_nacl', |
| 41 ], |
| 42 'variables': { |
| 43 'extra_files': [ |
| 44 'webapp/remoting_client_pnacl.nmf', |
| 45 '<(PRODUCT_DIR)/remoting_client_plugin_newlib.pexe', |
| 46 ], |
| 47 }, |
| 48 }], |
38 ['run_jscompile != 0', { | 49 ['run_jscompile != 0', { |
39 'variables': { | 50 'variables': { |
40 'success_stamp': '<(PRODUCT_DIR)/remoting_webapp_jscompile.stamp', | 51 'success_stamp': '<(PRODUCT_DIR)/remoting_webapp_jscompile.stamp', |
41 }, | 52 }, |
42 'actions': [ | 53 'actions': [ |
43 { | 54 { |
44 'action_name': 'Verify remoting webapp', | 55 'action_name': 'Verify remoting webapp', |
45 'inputs': [ | 56 'inputs': [ |
46 '<@(remoting_webapp_all_js_files)', | 57 '<@(remoting_webapp_all_js_files)', |
47 '<@(remoting_webapp_js_proto_files)', | 58 '<@(remoting_webapp_js_proto_files)', |
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
95 '<(webapp_type)', | 106 '<(webapp_type)', |
96 '<@(generated_html_files)', | 107 '<@(generated_html_files)', |
97 '<@(remoting_webapp_files)', | 108 '<@(remoting_webapp_files)', |
98 '<@(extra_files)', | 109 '<@(extra_files)', |
99 '<@(plugin_args)', | 110 '<@(plugin_args)', |
100 '--locales', '<@(remoting_webapp_locale_files)', | 111 '--locales', '<@(remoting_webapp_locale_files)', |
101 ], | 112 ], |
102 }, | 113 }, |
103 ], | 114 ], |
104 } | 115 } |
OLD | NEW |