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 'extra_files%': [], | 10 'extra_files%': [], |
11 'generated_html_files': [ | 11 'generated_html_files': [ |
12 '<(SHARED_INTERMEDIATE_DIR)/main.html', | 12 '<(SHARED_INTERMEDIATE_DIR)/main.html', |
13 '<(SHARED_INTERMEDIATE_DIR)/wcs_sandbox.html', | 13 '<(SHARED_INTERMEDIATE_DIR)/wcs_sandbox.html', |
14 ], | 14 ], |
15 }, | 15 }, |
16 'dependencies': [ | 16 'dependencies': [ |
17 'remoting_resources', | 17 'remoting_resources', |
18 'remoting_webapp_html', | 18 'remoting_webapp_html', |
19 ], | 19 ], |
20 'conditions': [ | 20 'conditions': [ |
21 ['webapp_type=="v2_pnacl"', { | 21 ['webapp_type=="v2"', { |
22 'dependencies': [ | 22 'dependencies': [ |
23 'remoting_nacl.gyp:remoting_client_plugin_nacl', | 23 'remoting_nacl.gyp:remoting_client_plugin_nacl', |
24 ], | 24 ], |
25 'variables': { | 25 'variables': { |
26 'extra_files': [ | 26 'extra_files': [ |
| 27 'webapp/background.js', |
27 'webapp/remoting_client_pnacl.nmf', | 28 'webapp/remoting_client_pnacl.nmf', |
28 '<(PRODUCT_DIR)/remoting_client_plugin_newlib.pexe', | 29 '<(PRODUCT_DIR)/remoting_client_plugin_newlib.pexe', |
29 ], | 30 ], |
30 }, | 31 }, |
31 }], | 32 }], |
32 ['run_jscompile != 0', { | 33 ['run_jscompile != 0', { |
33 'variables': { | 34 'variables': { |
34 'success_stamp': '<(PRODUCT_DIR)/remoting_webapp_jscompile.stamp', | 35 'success_stamp': '<(PRODUCT_DIR)/remoting_webapp_jscompile.stamp', |
35 }, | 36 }, |
36 'actions': [ | 37 'actions': [ |
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
79 'webapp/manifest.json.jinja2', | 80 'webapp/manifest.json.jinja2', |
80 '<(webapp_type)', | 81 '<(webapp_type)', |
81 '<@(generated_html_files)', | 82 '<@(generated_html_files)', |
82 '<@(remoting_webapp_files)', | 83 '<@(remoting_webapp_files)', |
83 '<@(extra_files)', | 84 '<@(extra_files)', |
84 '--locales', '<@(remoting_webapp_locale_files)', | 85 '--locales', '<@(remoting_webapp_locale_files)', |
85 ], | 86 ], |
86 }, | 87 }, |
87 ], | 88 ], |
88 } | 89 } |
OLD | NEW |