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

Unified Diff: content/content_browser.gypi

Issue 1226153004: ATK accessibility support for web content on Aura Linux. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix chromecast build by changing the ifdefs back to what they were and then adding another exclusio… Created 5 years, 5 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
« no previous file with comments | « content/browser/accessibility/browser_accessibility_manager_auralinux.cc ('k') | ui/accessibility/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/content_browser.gypi
diff --git a/content/content_browser.gypi b/content/content_browser.gypi
index bb3fb9363b3cac18b3d1f5e88ef4e722d13b39cc..cf762ea820f29fa0fda1f5a5e6eb8e131e19b655 100644
--- a/content/content_browser.gypi
+++ b/content/content_browser.gypi
@@ -1585,6 +1585,13 @@
'browser/android/java/jni_helper.cc',
'browser/android/java/jni_helper.h',
],
+ 'auralinux_browser_sources': [
+ 'browser/accessibility/accessibility_tree_formatter_auralinux.cc',
+ 'browser/accessibility/browser_accessibility_auralinux.cc',
+ 'browser/accessibility/browser_accessibility_auralinux.h',
+ 'browser/accessibility/browser_accessibility_manager_auralinux.cc',
+ 'browser/accessibility/browser_accessibility_manager_auralinux.h',
+ ],
'webrtc_browser_sources': [
'browser/media/webrtc_internals.cc',
'browser/media/webrtc_internals.h',
@@ -1923,6 +1930,22 @@
},
},
}],
+ ['OS=="linux" and chromeos==0 and use_x11==1', {
+ 'dependencies': [
+ '../build/linux/system.gyp:atk',
+ '../build/linux/system.gyp:gconf',
+ '../build/linux/system.gyp:glib',
+ ],
+ 'variables': {
+ 'clang_warning_flags': [
+ # glib uses the pre-c++11 typedef-as-static_assert hack.
+ '-Wno-unused-local-typedefs',
+ ],
+ },
+ 'sources': [
+ '<@(auralinux_browser_sources)',
+ ],
+ }],
['OS=="linux"', {
'dependencies': [
'../sandbox/sandbox.gyp:libc_urandom_override',
« no previous file with comments | « content/browser/accessibility/browser_accessibility_manager_auralinux.cc ('k') | ui/accessibility/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698