| 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 assert(is_chromeos) | 5 assert(is_chromeos) |
| 6 | 6 |
| 7 chromevox_out_dir = "$root_out_dir/resources/chromeos/chromevox" | 7 chromevox_out_dir = "$root_out_dir/resources/chromeos/chromevox" |
| 8 | 8 |
| 9 group("chromevox_third_party_resources") { | 9 group("chromevox_third_party_resources") { |
| 10 deps = [ | 10 deps = [ |
| 11 ":chromevox_third_party_background_resources", | |
| 12 ":chromevox_third_party_injected_resources", | 11 ":chromevox_third_party_injected_resources", |
| 13 ] | 12 ] |
| 14 } | 13 } |
| 15 | 14 |
| 16 copy("chromevox_third_party_background_resources") { | |
| 17 sources = [ | |
| 18 "chromevox/background/chrome_shared2.css", | |
| 19 "chromevox/background/options.css", | |
| 20 "chromevox/background/options_widgets.css", | |
| 21 ] | |
| 22 outputs = [ | |
| 23 "$chromevox_out_dir/chromevox/background/{{source_file_part}}", | |
| 24 ] | |
| 25 } | |
| 26 | |
| 27 copy("chromevox_third_party_injected_resources") { | 15 copy("chromevox_third_party_injected_resources") { |
| 28 sources = [ | 16 sources = [ |
| 29 "chromevox/injected/mathjax.js", | 17 "chromevox/injected/mathjax.js", |
| 30 "chromevox/injected/mathjax_external_util.js", | 18 "chromevox/injected/mathjax_external_util.js", |
| 31 ] | 19 ] |
| 32 outputs = [ | 20 outputs = [ |
| 33 "$chromevox_out_dir/chromevox/injected/{{source_file_part}}", | 21 "$chromevox_out_dir/chromevox/injected/{{source_file_part}}", |
| 34 ] | 22 ] |
| 35 } | 23 } |
| OLD | NEW |