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

Side by Side Diff: ui/accessibility/accessibility.gyp

Issue 1713723002: Implement accessibility support for CSS-transformed iframes. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed another skia dependency Created 4 years, 10 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
OLDNEW
1 # Copyright 2013 The Chromium Authors. All rights reserved. 1 # Copyright 2013 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 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 9
10 'targets': [ 10 'targets': [
11 { 11 {
12 'target_name': 'accessibility', 12 'target_name': 'accessibility',
13 'type': '<(component)', 13 'type': '<(component)',
14 'export_dependent_settings': [ 14 'export_dependent_settings': [
15 'ax_gen', 15 'ax_gen',
16 '../../skia/skia.gyp:skia',
16 ], 17 ],
17 'hard_dependency': 1, 18 'hard_dependency': 1,
18 'dependencies': [ 19 'dependencies': [
19 '../../base/base.gyp:base', 20 '../../base/base.gyp:base',
21 '../../skia/skia.gyp:skia',
20 '../gfx/gfx.gyp:gfx', 22 '../gfx/gfx.gyp:gfx',
21 '../gfx/gfx.gyp:gfx_geometry', 23 '../gfx/gfx.gyp:gfx_geometry',
22 'ax_gen', 24 'ax_gen',
23 ], 25 ],
24 'defines': [ 26 'defines': [
25 'ACCESSIBILITY_IMPLEMENTATION', 27 'ACCESSIBILITY_IMPLEMENTATION',
26 ], 28 ],
27 'sources': [ 29 'sources': [
28 # All .cc, .h under accessibility, except unittests 30 # All .cc, .h under accessibility, except unittests
29 'ax_node.cc', 31 'ax_node.cc',
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
94 'ui_accessibility_java' 96 'ui_accessibility_java'
95 ], 97 ],
96 }], 98 }],
97 ], 99 ],
98 }, 100 },
99 { 101 {
100 'target_name': 'accessibility_test_support', 102 'target_name': 'accessibility_test_support',
101 'type': 'static_library', 103 'type': 'static_library',
102 'dependencies': [ 104 'dependencies': [
103 '../../base/base.gyp:base', 105 '../../base/base.gyp:base',
106 '../../skia/skia.gyp:skia',
104 'accessibility' 107 'accessibility'
105 ], 108 ],
106 'sources': [ 109 'sources': [
107 'platform/test_ax_node_wrapper.cc', 110 'platform/test_ax_node_wrapper.cc',
108 'platform/test_ax_node_wrapper.h', 111 'platform/test_ax_node_wrapper.h',
109 'tree_generator.cc', 112 'tree_generator.cc',
110 'tree_generator.h', 113 'tree_generator.h',
111 ] 114 ]
112 }, 115 },
113 { 116 {
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after
211 'type': 'none', 214 'type': 'none',
212 'variables': { 215 'variables': {
213 'source_file': 'ax_enums.idl', 216 'source_file': 'ax_enums.idl',
214 }, 217 },
215 'includes': [ '../../build/android/java_cpp_enum.gypi' ], 218 'includes': [ '../../build/android/java_cpp_enum.gypi' ],
216 }, 219 },
217 ], 220 ],
218 }], 221 }],
219 ], 222 ],
220 } 223 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698