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 'main_html_file%': '<(SHARED_INTERMEDIATE_DIR)/remoting/main.html', | 11 'main_html_file%': '<(SHARED_INTERMEDIATE_DIR)/remoting/main.html', |
12 'generated_html_files': [ | 12 'generated_html_files': [ |
13 '<(SHARED_INTERMEDIATE_DIR)/remoting/background.html', | 13 '<(SHARED_INTERMEDIATE_DIR)/remoting/background.html', |
14 '<(SHARED_INTERMEDIATE_DIR)/remoting/message_window.html', | 14 '<(SHARED_INTERMEDIATE_DIR)/remoting/message_window.html', |
15 '<(SHARED_INTERMEDIATE_DIR)/remoting/wcs_sandbox.html', | 15 '<(SHARED_INTERMEDIATE_DIR)/remoting/wcs_sandbox.html', |
16 ], | 16 ], |
17 'dr_webapp_locales_listfile': '<(SHARED_INTERMEDIATE_DIR)/>(_target_name)_lo
cales.txt', | 17 'dr_webapp_locales_listfile': '<(SHARED_INTERMEDIATE_DIR)/>(_target_name)_lo
cales.txt', |
18 }, | 18 }, |
19 'dependencies': [ | 19 'dependencies': [ |
20 'remoting_resources', | 20 'remoting_resources', |
21 'remoting_webapp_html', | 21 'remoting_webapp_html', |
22 ], | 22 ], |
23 'conditions': [ | 23 'conditions': [ |
24 ['run_jscompile != 0', { | 24 ['run_jscompile != 0', { |
25 'includes': ['remoting_webapp_compile.gypi'], | 25 'dependencies': ['remoting_webapp_compile.gypi:*'], |
26 }], | 26 }], |
27 ], | 27 ], |
28 'actions': [ | 28 'actions': [ |
29 { | 29 { |
30 'action_name': 'Build Remoting locales listfile', | 30 'action_name': 'Build Remoting locales listfile', |
31 'inputs': [ | 31 'inputs': [ |
32 '<(remoting_localize_path)', | 32 '<(remoting_localize_path)', |
33 ], | 33 ], |
34 'outputs': [ | 34 'outputs': [ |
35 '<(dr_webapp_locales_listfile)', | 35 '<(dr_webapp_locales_listfile)', |
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
74 '<@(remoting_webapp_crd_files)', | 74 '<@(remoting_webapp_crd_files)', |
75 '<@(extra_files)', | 75 '<@(extra_files)', |
76 '--locales_listfile', | 76 '--locales_listfile', |
77 '<(dr_webapp_locales_listfile)', | 77 '<(dr_webapp_locales_listfile)', |
78 '--use_gcd', | 78 '--use_gcd', |
79 '<(remoting_use_gcd)', | 79 '<(remoting_use_gcd)', |
80 ], | 80 ], |
81 }, | 81 }, |
82 ], | 82 ], |
83 } | 83 } |
OLD | NEW |