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

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

Issue 743273002: Various changes required to support ChromeVox Next to read Views and Windows. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 6 years 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 760675fe4b81ef4895632653b72675c95b5856ff..cf729700d968a94bbc2bc60880d6f9bd17c258ca 100644
--- a/chrome/browser/resources/chromeos/chromevox/chromevox.gyp
+++ b/chrome/browser/resources/chromeos/chromevox/chromevox.gyp
@@ -24,10 +24,8 @@
'type': 'none',
'dependencies': [
'chromevox_resources',
- 'chromevox1_manifest',
- 'chromevox1_guest_manifest',
- 'chromevox2_manifest',
- 'chromevox2_guest_manifest',
+ 'chromevox_manifest',
+ 'chromevox_guest_manifest',
],
},
{
@@ -156,8 +154,9 @@
],
'includes': ['generate_deps.gypi'],
},
+ # Used for webstore releases.
{
- 'target_name': 'chromevox1_manifest',
+ 'target_name': 'chromevox_webstore_manifest',
'type': 'none',
'variables': {
'output_manifest_path': '<(chromevox_dest_dir)/manifest.json',
@@ -165,30 +164,23 @@
'includes': [ 'generate_manifest.gypi', ],
},
{
- 'target_name': 'chromevox1_guest_manifest',
+ 'target_name': 'chromevox_manifest',
'type': 'none',
'variables': {
- 'output_manifest_path': '<(chromevox_dest_dir)/manifest_guest.json',
- 'is_guest_manifest': 1,
- },
- 'includes': [ 'generate_manifest.gypi', ],
- },
- {
- 'target_name': 'chromevox2_manifest',
- 'type': 'none',
- 'variables': {
- 'output_manifest_path': '<(chromevox_dest_dir)/manifest_next.json',
- 'is_chromevox_next': 1,
+ 'output_manifest_path': '<(chromevox_dest_dir)/manifest.json',
+ # TODO(dtseng): Flip this to 1 once ChromeVox Next is ready.
+ 'is_chromevox_next': 0,
},
'includes': [ 'generate_manifest.gypi', ],
},
{
- 'target_name': 'chromevox2_guest_manifest',
+ 'target_name': 'chromevox_guest_manifest',
'type': 'none',
'variables': {
- 'output_manifest_path': '<(chromevox_dest_dir)/manifest_next_guest.json',
+ 'output_manifest_path': '<(chromevox_dest_dir)/manifest_guest.json',
'is_guest_manifest': 1,
- 'is_chromevox_next': 1,
+ # TODO(dtseng): Flip this to 1 once ChromeVox Next is ready.
+ 'is_chromevox_next': 0,
},
'includes': [ 'generate_manifest.gypi', ],
},

Powered by Google App Engine
This is Rietveld 408576698