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

Side by Side Diff: chrome/browser/resources/chromeos/chromevox/chromevox_assets.gypi

Issue 1277183003: Add ChromeVox panel and implement caption display functionality. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix GN build Created 5 years, 1 month 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
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 'variables': { 6 'variables': {
7 'chromevox_assets_chromevox': [ 7 'chromevox_assets_images': [
8 'chromevox/chromevox-128.png', 8 'images/chromevox-128.png',
9 'chromevox/chromevox-16.png', 9 'images/chromevox-16.png',
10 'chromevox/chromevox-19.png', 10 'images/chromevox-19.png',
11 'chromevox/chromevox-48.png', 11 'images/chromevox-48.png',
12 'images/close-19.png',
13 'images/close-hover-19.png',
14 'images/options-19.png',
15 'images/options-hover-19.png',
16 'images/triangle-6.png',
12 ], 17 ],
13 'chromevox_assets_chromevox_background_earcons': [ 18 'chromevox_assets_chromevox_background_earcons': [
14 'chromevox/background/earcons/alert_modal.ogg', 19 'chromevox/background/earcons/alert_modal.ogg',
15 'chromevox/background/earcons/alert_nonmodal.ogg', 20 'chromevox/background/earcons/alert_nonmodal.ogg',
16 'chromevox/background/earcons/button.ogg', 21 'chromevox/background/earcons/button.ogg',
17 'chromevox/background/earcons/check_off.ogg', 22 'chromevox/background/earcons/check_off.ogg',
18 'chromevox/background/earcons/check_on.ogg', 23 'chromevox/background/earcons/check_on.ogg',
19 'chromevox/background/earcons/editable_text.ogg', 24 'chromevox/background/earcons/editable_text.ogg',
20 'chromevox/background/earcons/invalid_keypress.ogg', 25 'chromevox/background/earcons/invalid_keypress.ogg',
21 'chromevox/background/earcons/link.ogg', 26 'chromevox/background/earcons/link.ogg',
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
85 'cvox2/background/earcons/small_room_2.wav', 90 'cvox2/background/earcons/small_room_2.wav',
86 'cvox2/background/earcons/static.wav', 91 'cvox2/background/earcons/static.wav',
87 ], 92 ],
88 }, 93 },
89 'targets': [ 94 'targets': [
90 { 95 {
91 'target_name': 'chromevox_assets', 96 'target_name': 'chromevox_assets',
92 'type': 'none', 97 'type': 'none',
93 'copies': [ 98 'copies': [
94 { 99 {
95 'destination': '<(chromevox_dest_dir)/chromevox', 100 'destination': '<(chromevox_dest_dir)/images',
96 'files': [ 101 'files': [
97 '<@(chromevox_assets_chromevox)', 102 '<@(chromevox_assets_images)',
98 ], 103 ],
99 }, 104 },
100 { 105 {
101 'destination': '<(chromevox_dest_dir)/chromevox/background/earcons', 106 'destination': '<(chromevox_dest_dir)/chromevox/background/earcons',
102 'files': [ 107 'files': [
103 '<@(chromevox_assets_chromevox_background_earcons)', 108 '<@(chromevox_assets_chromevox_background_earcons)',
104 ], 109 ],
105 }, 110 },
106 { 111 {
107 'destination': '<(chromevox_dest_dir)/chromevox/background/keymaps', 112 'destination': '<(chromevox_dest_dir)/chromevox/background/keymaps',
(...skipping 16 matching lines...) Expand all
124 { 129 {
125 'destination': '<(chromevox_dest_dir)/cvox2/background/earcons', 130 'destination': '<(chromevox_dest_dir)/cvox2/background/earcons',
126 'files': [ 131 'files': [
127 '<@(chromevox_assets_cvox2_background_earcons)', 132 '<@(chromevox_assets_cvox2_background_earcons)',
128 ], 133 ],
129 }, 134 },
130 ], 135 ],
131 }, 136 },
132 ], 137 ],
133 } 138 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698