| 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 if (is_chromeos) { | 5 if (is_chromeos_ui) { |
| 6 import("//chrome/browser/resources/chromeos/chromevox/chromevox.gni") | 6 import("//chrome/browser/resources/chromeos/chromevox/chromevox.gni") |
| 7 | 7 |
| 8 chromevox_out_dir = "$root_out_dir/resources/chromeos/chromevox" | 8 chromevox_out_dir = "$root_out_dir/resources/chromeos/chromevox" |
| 9 | 9 |
| 10 group("chromevox_third_party_resources") { | 10 group("chromevox_third_party_resources") { |
| 11 deps = [ | 11 deps = [ |
| 12 ":chromevox_third_party_background_resources", | 12 ":chromevox_third_party_background_resources", |
| 13 ":chromevox_third_party_injected_resources", | 13 ":chromevox_third_party_injected_resources", |
| 14 ] | 14 ] |
| 15 } | 15 } |
| (...skipping 12 matching lines...) Expand all Loading... |
| 28 copy("chromevox_third_party_injected_resources") { | 28 copy("chromevox_third_party_injected_resources") { |
| 29 sources = [ | 29 sources = [ |
| 30 "chromevox/injected/mathjax.js", | 30 "chromevox/injected/mathjax.js", |
| 31 "chromevox/injected/mathjax_external_util.js", | 31 "chromevox/injected/mathjax_external_util.js", |
| 32 ] | 32 ] |
| 33 outputs = [ | 33 outputs = [ |
| 34 "$chromevox_out_dir/chromevox/injected/{{source_file_part}}", | 34 "$chromevox_out_dir/chromevox/injected/{{source_file_part}}", |
| 35 ] | 35 ] |
| 36 } | 36 } |
| 37 } | 37 } |
| OLD | NEW |