Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(240)

Side by Side Diff: chrome/browser/resources/chromeos/chromevox/chromevox.gyp

Issue 586103004: Implement ChromeVox next/previous line, link, and heading. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@lkcr
Patch Set: Address comments. Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | chrome/browser/resources/chromeos/chromevox/cvox2/background/automation_util.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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. Applicable if 9 # Whether to compress the 4 main ChromeVox scripts. Applicable if
10 # use_migrated_chromevox is true. 10 # use_migrated_chromevox is true.
(...skipping 173 matching lines...) Expand 10 before | Expand all | Expand 10 after
184 'cvox2/background/background.html', 184 'cvox2/background/background.html',
185 ], 185 ],
186 }, 186 },
187 ], 187 ],
188 }, 188 },
189 { 189 {
190 'target_name': 'chromevox2_manifest', 190 'target_name': 'chromevox2_manifest',
191 'type': 'none', 191 'type': 'none',
192 'variables': { 192 'variables': {
193 'output_manifest_path': '<(chromevox_dest_dir)/manifest_next.json', 193 'output_manifest_path': '<(chromevox_dest_dir)/manifest_next.json',
194 'use_chromevox_next': 1, 194 'use_chromevox_next': 1,
195 }, 195 },
196 'includes': [ 'generate_manifest.gypi', ], 196 'includes': [ 'generate_manifest.gypi', ],
197 }, 197 },
198 { 198 {
199 'target_name': 'chromevox2_guest_manifest', 199 'target_name': 'chromevox2_guest_manifest',
200 'type': 'none', 200 'type': 'none',
201 'variables': { 201 'variables': {
202 'output_manifest_path': '<(chromevox_dest_dir)/manifest_next_guest.j son', 202 'output_manifest_path': '<(chromevox_dest_dir)/manifest_next_guest.j son',
203 'is_guest_manifest': 1, 203 'is_guest_manifest': 1,
204 'use_chromevox_next': 1, 204 'use_chromevox_next': 1,
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
263 '<(options_script_loader_file)', 263 '<(options_script_loader_file)',
264 ], 264 ],
265 'includes': [ 'copy_js.gypi', ], 265 'includes': [ 'copy_js.gypi', ],
266 }, 266 },
267 ], 267 ],
268 }], 268 }],
269 ], 269 ],
270 }], 270 }],
271 ], 271 ],
272 } 272 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/chromeos/chromevox/cvox2/background/automation_util.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698