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

Unified Diff: chrome/browser/resources/chromeos/chromevox/chromevox.gyp

Issue 1282593002: Add ChromeVox panel and implement caption display functionality. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Revert changes to accessibility_manager in this change 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/chromevox.gyp
diff --git a/chrome/browser/resources/chromeos/chromevox/chromevox.gyp b/chrome/browser/resources/chromeos/chromevox/chromevox.gyp
index 10011720e197b4aa4a5ca77b209b3620bc21ef51..acdb0b8e37afd4b2f2fd2999f3bcb72a22b3ba17 100644
--- a/chrome/browser/resources/chromeos/chromevox/chromevox.gyp
+++ b/chrome/browser/resources/chromeos/chromevox/chromevox.gyp
@@ -49,6 +49,7 @@
'chromevox1_kbexplorer_script',
'chromevox1_options_script',
'chromevox2_background_script',
+ 'chromevox2_panel_script',
],
}, { # chromevox_compress_js==0
'dependencies': [
@@ -74,6 +75,7 @@
'destination': '<(chromevox_dest_dir)/cvox2/background',
'files': [
'cvox2/background/background.html',
+ 'cvox2/background/panel.html',
],
},
],
@@ -141,6 +143,7 @@
'<(chromevox1_kbexplorer_loader_file)',
'<(chromevox1_options_script_loader_file)',
'<(chromevox2_background_script_loader_file)',
+ '<(chromevox2_panel_script_loader_file)',
],
'includes': ['generate_deps.gypi'],
},
@@ -213,6 +216,15 @@
],
'includes': [ 'compress_js.gypi', ],
},
+ {
+ 'target_name': 'chromevox2_panel_script',
+ 'type': 'none',
+ 'variables': {
+ 'output_file': '<(chromevox_dest_dir)/chromeVoxPanelScript.js',
+ },
+ 'sources': [ '<(chromevox2_panel_script_loader_file)' ],
+ 'includes': [ 'compress_js.gypi', ],
+ },
],
}, { # chromevox_compress_js==0
'targets': [
@@ -228,6 +240,7 @@
'<(chromevox1_kbexplorer_loader_file)',
'<(chromevox1_options_script_loader_file)',
'<(chromevox2_background_script_loader_file)',
+ '<(chromevox2_panel_script_loader_file)',
],
'includes': [ 'copy_js.gypi', ],
},

Powered by Google App Engine
This is Rietveld 408576698