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 'variables': { | 6 'variables': { |
7 'chromevox_assets_chromevox': [ | 7 'chromevox_assets_chromevox': [ |
8 'chromevox/chromevox-128.png', | 8 'chromevox/chromevox-128.png', |
9 'chromevox/chromevox-16.png', | 9 'chromevox/chromevox-16.png', |
10 'chromevox/chromevox-19.png', | 10 'chromevox/chromevox-19.png', |
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
79 'chromevox/background/mathmaps/symbols/math_characters.json', | 79 'chromevox/background/mathmaps/symbols/math_characters.json', |
80 'chromevox/background/mathmaps/symbols/math_delimiters.json', | 80 'chromevox/background/mathmaps/symbols/math_delimiters.json', |
81 'chromevox/background/mathmaps/symbols/math_digits.json', | 81 'chromevox/background/mathmaps/symbols/math_digits.json', |
82 'chromevox/background/mathmaps/symbols/math_geometry.json', | 82 'chromevox/background/mathmaps/symbols/math_geometry.json', |
83 'chromevox/background/mathmaps/symbols/math_harpoons.json', | 83 'chromevox/background/mathmaps/symbols/math_harpoons.json', |
84 'chromevox/background/mathmaps/symbols/math_non_characters.json', | 84 'chromevox/background/mathmaps/symbols/math_non_characters.json', |
85 'chromevox/background/mathmaps/symbols/math_symbols.json', | 85 'chromevox/background/mathmaps/symbols/math_symbols.json', |
86 'chromevox/background/mathmaps/symbols/math_whitespace.json', | 86 'chromevox/background/mathmaps/symbols/math_whitespace.json', |
87 'chromevox/background/mathmaps/symbols/other_stars.json', | 87 'chromevox/background/mathmaps/symbols/other_stars.json', |
88 ], | 88 ], |
89 'chromevox_assets_cvox2_background_earcons': [ | |
Peter Lundblad
2015/08/11 11:15:28
Need to add this variable to the sources list in t
dmazzoni
2015/09/14 18:06:37
Done, thanks.
| |
90 'cvox2/background/earcons/control.wav', | |
91 'cvox2/background/earcons/selection_reverse.wav', | |
92 'cvox2/background/earcons/selection.wav', | |
93 'cvox2/background/earcons/skim.wav', | |
94 'cvox2/background/earcons/small_room_2.wav', | |
95 'cvox2/background/earcons/static.wav', | |
96 ], | |
89 }, | 97 }, |
90 'targets': [ | 98 'targets': [ |
91 { | 99 { |
92 'target_name': 'chromevox_assets', | 100 'target_name': 'chromevox_assets', |
93 'type': 'none', | 101 'type': 'none', |
94 'copies': [ | 102 'copies': [ |
95 { | 103 { |
96 'destination': '<(chromevox_dest_dir)/chromevox', | 104 'destination': '<(chromevox_dest_dir)/chromevox', |
97 'files': [ | 105 'files': [ |
98 '<@(chromevox_assets_chromevox)', | 106 '<@(chromevox_assets_chromevox)', |
(...skipping 16 matching lines...) Expand all Loading... | |
115 'files': [ | 123 'files': [ |
116 '<@(chromevox_assets_chromevox_background_mathmaps_functions)', | 124 '<@(chromevox_assets_chromevox_background_mathmaps_functions)', |
117 ], | 125 ], |
118 }, | 126 }, |
119 { | 127 { |
120 'destination': '<(chromevox_dest_dir)/chromevox/background/mathmaps/sy mbols', | 128 'destination': '<(chromevox_dest_dir)/chromevox/background/mathmaps/sy mbols', |
121 'files': [ | 129 'files': [ |
122 '<@(chromevox_assets_chromevox_background_mathmaps_symbols)', | 130 '<@(chromevox_assets_chromevox_background_mathmaps_symbols)', |
123 ], | 131 ], |
124 }, | 132 }, |
133 { | |
134 'destination': '<(chromevox_dest_dir)/cvox2/background/earcons', | |
135 'files': [ | |
136 '<@(chromevox_assets_cvox2_background_earcons)', | |
137 ], | |
138 }, | |
125 ], | 139 ], |
126 }, | 140 }, |
127 ], | 141 ], |
128 } | 142 } |
OLD | NEW |