Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4104)

Unified Diff: chrome/browser/resources/chromeos/chromevox/BUILD.gn

Issue 1277183003: Add ChromeVox panel and implement caption display functionality. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/chromeos/chromevox/BUILD.gn
diff --git a/chrome/browser/resources/chromeos/chromevox/BUILD.gn b/chrome/browser/resources/chromeos/chromevox/BUILD.gn
index 1538cc8b0f9a75b29247faa8418a436b8e047feb..7ff14a5d1f4db50aa3818ffd29c2e47c8249bd19 100644
--- a/chrome/browser/resources/chromeos/chromevox/BUILD.gn
+++ b/chrome/browser/resources/chromeos/chromevox/BUILD.gn
@@ -36,6 +36,7 @@ group("chromevox") {
":chromevox1_kbexplorer_script",
":chromevox1_options_script",
":chromevox2_background_script",
+ ":chromevox2_panel_script",
]
} else {
deps += [ ":chromevox_deps_js" ]
@@ -147,6 +148,7 @@ run_jsbundler("chromevox_copied_files") {
"chromevox/background/options.html",
"chromevox/injected/api.js",
"cvox2/background/background.html",
+ "cvox2/background/panel.html",
]
if (chromevox_compress_js) {
sources += [ "chromevox/injected/api_util.js" ]
@@ -159,6 +161,7 @@ run_jsbundler("chromevox_copied_files") {
chromevox_vars_gypi_values.chromevox1_kbexplorer_loader_file,
chromevox_vars_gypi_values.chromevox1_options_script_loader_file,
chromevox_vars_gypi_values.chromevox2_background_script_loader_file,
+ chromevox_vars_gypi_values.chromevox2_panel_script_loader_file,
]
}
if (!chromevox_compress_js) {
@@ -291,6 +294,13 @@ if (chromevox_compress_js) {
]
output_file = "$chromevox_out_dir/chromeVox2ChromeBackgroundScript.js"
}
+
+ compress_js("chromevox2_panel_script") {
+ sources = [
+ chromevox_vars_gypi_values.chromevox2_panel_script_loader_file,
+ ]
+ output_file = "$chromevox_out_dir/chromeVoxPanelScript.js"
+ }
} else {
generate_deps_js("chromevox_deps_js") {
sources = chromevox_modules + closure_library_modules

Powered by Google App Engine
This is Rietveld 408576698