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 |