| 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 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 161 'variables': { | 161 'variables': { |
| 162 'output_manifest_path': '<(chromevox_dest_dir)/manifest.json', | 162 'output_manifest_path': '<(chromevox_dest_dir)/manifest.json', |
| 163 }, | 163 }, |
| 164 'includes': [ 'generate_manifest.gypi', ], | 164 'includes': [ 'generate_manifest.gypi', ], |
| 165 }, | 165 }, |
| 166 { | 166 { |
| 167 'target_name': 'chromevox_manifest', | 167 'target_name': 'chromevox_manifest', |
| 168 'type': 'none', | 168 'type': 'none', |
| 169 'variables': { | 169 'variables': { |
| 170 'output_manifest_path': '<(chromevox_dest_dir)/manifest.json', | 170 'output_manifest_path': '<(chromevox_dest_dir)/manifest.json', |
| 171 # TODO(dtseng): Flip this to 1 once ChromeVox Next is ready. | 171 'is_chromevox_next': 1, |
| 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. | 181 'is_chromevox_next': 1, |
| 183 'is_chromevox_next': 0, | |
| 184 }, | 182 }, |
| 185 'includes': [ 'generate_manifest.gypi', ], | 183 'includes': [ 'generate_manifest.gypi', ], |
| 186 }, | 184 }, |
| 187 ], | 185 ], |
| 188 'conditions': [ | 186 'conditions': [ |
| 189 ['chromevox_compress_js==1', { | 187 ['chromevox_compress_js==1', { |
| 190 'targets': [ | 188 'targets': [ |
| 191 { | 189 { |
| 192 'target_name': 'chromevox1_content_script', | 190 'target_name': 'chromevox1_content_script', |
| 193 'type': 'none', | 191 'type': 'none', |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 253 '<(chromevox2_background_script_loader_file)', | 251 '<(chromevox2_background_script_loader_file)', |
| 254 ], | 252 ], |
| 255 'includes': [ 'copy_js.gypi', ], | 253 'includes': [ 'copy_js.gypi', ], |
| 256 }, | 254 }, |
| 257 ], | 255 ], |
| 258 }], | 256 }], |
| 259 ], | 257 ], |
| 260 }], | 258 }], |
| 261 ], | 259 ], |
| 262 } | 260 } |
| OLD | NEW |