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

Side by Side Diff: content/content_browser.gypi

Issue 1128183010: ATK accessibility support for web content on Aura Linux. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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 unified diff | Download patch
« no previous file with comments | « content/browser/accessibility/browser_accessibility_manager_auralinux.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 { 5 {
6 'dependencies': [ 6 'dependencies': [
7 '../base/base.gyp:base_static', 7 '../base/base.gyp:base_static',
8 '../crypto/crypto.gyp:crypto', 8 '../crypto/crypto.gyp:crypto',
9 '../device/battery/battery.gyp:device_battery', 9 '../device/battery/battery.gyp:device_battery',
10 '../device/battery/battery.gyp:device_battery_mojo_bindings', 10 '../device/battery/battery.gyp:device_battery_mojo_bindings',
(...skipping 1896 matching lines...) Expand 10 before | Expand all | Expand 10 after
1907 'VCLinkerTool': { 1907 'VCLinkerTool': {
1908 'DelayLoadDLLs': [ 1908 'DelayLoadDLLs': [
1909 'dinput8.dll', 1909 'dinput8.dll',
1910 'user32.dll', 1910 'user32.dll',
1911 'dwmapi.dll', 1911 'dwmapi.dll',
1912 ], 1912 ],
1913 }, 1913 },
1914 }, 1914 },
1915 }, 1915 },
1916 }], 1916 }],
1917 ['OS=="linux" and chromecast==0 and chromeos==0 and use_x11==1', {
shreeramk 2015/07/14 05:21:00 Second problem is related to cast shell for linux.
1918 'dependencies': [
1919 '../build/linux/system.gyp:atk',
1920 '../build/linux/system.gyp:gconf',
1921 '../build/linux/system.gyp:glib',
1922 ],
1923 'variables': {
1924 'clang_warning_flags': [
1925 # glib uses the pre-c++11 typedef-as-static_assert hack.
1926 '-Wno-unused-local-typedefs',
1927 ],
1928 },
1929 'sources': [
shreeramk 2015/07/14 05:21:00 Is this correct to add the files specific to the p
1930 'browser/accessibility/accessibility_tree_formatter_auralinux.cc',
1931 'browser/accessibility/browser_accessibility_auralinux.cc',
1932 'browser/accessibility/browser_accessibility_auralinux.h',
1933 'browser/accessibility/browser_accessibility_manager_auralinux.cc',
1934 'browser/accessibility/browser_accessibility_manager_auralinux.h',
1935 ],
1936 }],
1917 ['OS=="linux"', { 1937 ['OS=="linux"', {
1918 'dependencies': [ 1938 'dependencies': [
1919 '../sandbox/sandbox.gyp:libc_urandom_override', 1939 '../sandbox/sandbox.gyp:libc_urandom_override',
1920 ], 1940 ],
1921 }], 1941 }],
1922 ['use_udev == 1', { 1942 ['use_udev == 1', {
1923 'dependencies': [ 1943 'dependencies': [
1924 '../device/udev_linux/udev.gyp:udev_linux', 1944 '../device/udev_linux/udev.gyp:udev_linux',
1925 ], 1945 ],
1926 }, { 1946 }, {
(...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after
2099 'sources': [ 2119 'sources': [
2100 'browser/vr/vr_device.cc', 2120 'browser/vr/vr_device.cc',
2101 'browser/vr/vr_device.h', 2121 'browser/vr/vr_device.h',
2102 'browser/vr/vr_device_manager.cc', 2122 'browser/vr/vr_device_manager.cc',
2103 'browser/vr/vr_device_manager.h', 2123 'browser/vr/vr_device_manager.h',
2104 'browser/vr/vr_device_provider.h', 2124 'browser/vr/vr_device_provider.h',
2105 ] 2125 ]
2106 }], 2126 }],
2107 ], 2127 ],
2108 } 2128 }
OLDNEW
« no previous file with comments | « content/browser/accessibility/browser_accessibility_manager_auralinux.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698