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