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 'conditions': [ | 6 'conditions': [ |
7 ['chromeos==1', { | 7 ['chromeos==1', { |
8 'variables': { | 8 'variables': { |
9 # Whether to compress the 4 main ChromeVox scripts. | 9 # Whether to compress the 4 main ChromeVox scripts. |
10 'chromevox_compress_js%': '1', | 10 'chromevox_compress_js%': '1', |
(...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
153 '<(chromevox2_background_script_loader_file)', | 153 '<(chromevox2_background_script_loader_file)', |
154 ], | 154 ], |
155 'includes': ['generate_deps.gypi'], | 155 'includes': ['generate_deps.gypi'], |
156 }, | 156 }, |
157 # Used for webstore releases. | 157 # Used for webstore releases. |
158 { | 158 { |
159 'target_name': 'chromevox_webstore_manifest', | 159 'target_name': 'chromevox_webstore_manifest', |
160 'type': 'none', | 160 'type': 'none', |
161 'variables': { | 161 'variables': { |
162 'output_manifest_path': '<(chromevox_dest_dir)/manifest.json', | 162 'output_manifest_path': '<(chromevox_dest_dir)/manifest.json', |
| 163 'is_chromevox_classic': 1, |
163 }, | 164 }, |
164 'includes': [ 'generate_manifest.gypi', ], | 165 'includes': [ 'generate_manifest.gypi', ], |
165 }, | 166 }, |
166 { | 167 { |
167 'target_name': 'chromevox_manifest', | 168 'target_name': 'chromevox_manifest', |
168 'type': 'none', | 169 'type': 'none', |
169 'variables': { | 170 'variables': { |
170 'output_manifest_path': '<(chromevox_dest_dir)/manifest.json', | 171 'output_manifest_path': '<(chromevox_dest_dir)/manifest.json', |
171 # TODO(dtseng): Flip this to 1 once ChromeVox Next is ready. | |
172 'is_chromevox_next': 0, | |
173 }, | 172 }, |
174 'includes': [ 'generate_manifest.gypi', ], | 173 'includes': [ 'generate_manifest.gypi', ], |
175 }, | 174 }, |
176 { | 175 { |
177 'target_name': 'chromevox_guest_manifest', | 176 'target_name': 'chromevox_guest_manifest', |
178 'type': 'none', | 177 'type': 'none', |
179 'variables': { | 178 'variables': { |
180 'output_manifest_path': '<(chromevox_dest_dir)/manifest_guest.json', | 179 'output_manifest_path': '<(chromevox_dest_dir)/manifest_guest.json', |
181 'is_guest_manifest': 1, | 180 'is_guest_manifest': 1, |
182 # TODO(dtseng): Flip this to 1 once ChromeVox Next is ready. | |
183 'is_chromevox_next': 0, | |
184 }, | 181 }, |
185 'includes': [ 'generate_manifest.gypi', ], | 182 'includes': [ 'generate_manifest.gypi', ], |
186 }, | 183 }, |
187 ], | 184 ], |
188 'conditions': [ | 185 'conditions': [ |
189 ['chromevox_compress_js==1', { | 186 ['chromevox_compress_js==1', { |
190 'targets': [ | 187 'targets': [ |
191 { | 188 { |
192 'target_name': 'chromevox1_content_script', | 189 'target_name': 'chromevox1_content_script', |
193 'type': 'none', | 190 'type': 'none', |
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
253 '<(chromevox2_background_script_loader_file)', | 250 '<(chromevox2_background_script_loader_file)', |
254 ], | 251 ], |
255 'includes': [ 'copy_js.gypi', ], | 252 'includes': [ 'copy_js.gypi', ], |
256 }, | 253 }, |
257 ], | 254 ], |
258 }], | 255 }], |
259 ], | 256 ], |
260 }], | 257 }], |
261 ], | 258 ], |
262 } | 259 } |
OLD | NEW |