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 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
69 'chromevox/background/mathmaps/symbols/math_characters.json', | 69 'chromevox/background/mathmaps/symbols/math_characters.json', |
70 'chromevox/background/mathmaps/symbols/math_delimiters.json', | 70 'chromevox/background/mathmaps/symbols/math_delimiters.json', |
71 'chromevox/background/mathmaps/symbols/math_digits.json', | 71 'chromevox/background/mathmaps/symbols/math_digits.json', |
72 'chromevox/background/mathmaps/symbols/math_geometry.json', | 72 'chromevox/background/mathmaps/symbols/math_geometry.json', |
73 'chromevox/background/mathmaps/symbols/math_harpoons.json', | 73 'chromevox/background/mathmaps/symbols/math_harpoons.json', |
74 'chromevox/background/mathmaps/symbols/math_non_characters.json', | 74 'chromevox/background/mathmaps/symbols/math_non_characters.json', |
75 'chromevox/background/mathmaps/symbols/math_symbols.json', | 75 'chromevox/background/mathmaps/symbols/math_symbols.json', |
76 'chromevox/background/mathmaps/symbols/math_whitespace.json', | 76 'chromevox/background/mathmaps/symbols/math_whitespace.json', |
77 'chromevox/background/mathmaps/symbols/other_stars.json', | 77 'chromevox/background/mathmaps/symbols/other_stars.json', |
78 ], | 78 ], |
| 79 'chromevox_assets_cvox2_background_earcons': [ |
| 80 'cvox2/background/earcons/control.wav', |
| 81 'cvox2/background/earcons/selection_reverse.wav', |
| 82 'cvox2/background/earcons/selection.wav', |
| 83 'cvox2/background/earcons/skim.wav', |
| 84 'cvox2/background/earcons/small_room_2.wav', |
| 85 'cvox2/background/earcons/static.wav', |
| 86 ], |
79 }, | 87 }, |
80 'targets': [ | 88 'targets': [ |
81 { | 89 { |
82 'target_name': 'chromevox_assets', | 90 'target_name': 'chromevox_assets', |
83 'type': 'none', | 91 'type': 'none', |
84 'copies': [ | 92 'copies': [ |
85 { | 93 { |
86 'destination': '<(chromevox_dest_dir)/chromevox', | 94 'destination': '<(chromevox_dest_dir)/chromevox', |
87 'files': [ | 95 'files': [ |
88 '<@(chromevox_assets_chromevox)', | 96 '<@(chromevox_assets_chromevox)', |
(...skipping 16 matching lines...) Expand all Loading... |
105 'files': [ | 113 'files': [ |
106 '<@(chromevox_assets_chromevox_background_mathmaps_functions)', | 114 '<@(chromevox_assets_chromevox_background_mathmaps_functions)', |
107 ], | 115 ], |
108 }, | 116 }, |
109 { | 117 { |
110 'destination': '<(chromevox_dest_dir)/chromevox/background/mathmaps/sy
mbols', | 118 'destination': '<(chromevox_dest_dir)/chromevox/background/mathmaps/sy
mbols', |
111 'files': [ | 119 'files': [ |
112 '<@(chromevox_assets_chromevox_background_mathmaps_symbols)', | 120 '<@(chromevox_assets_chromevox_background_mathmaps_symbols)', |
113 ], | 121 ], |
114 }, | 122 }, |
| 123 { |
| 124 'destination': '<(chromevox_dest_dir)/cvox2/background/earcons', |
| 125 'files': [ |
| 126 '<@(chromevox_assets_cvox2_background_earcons)', |
| 127 ], |
| 128 }, |
115 ], | 129 ], |
116 }, | 130 }, |
117 ], | 131 ], |
118 } | 132 } |
OLD | NEW |