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

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

Issue 949333002: Revert of Implement NativeViewAccessibilityWin using AXPlatformNodeWin. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 9 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 | « ui/accessibility/DEPS ('k') | ui/accessibility/platform/ax_platform_node.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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': [
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 'ax_tree_update.h', 43 'ax_tree_update.h',
44 'ax_view_state.cc', 44 'ax_view_state.cc',
45 'ax_view_state.h', 45 'ax_view_state.h',
46 'platform/ax_platform_node.cc', 46 'platform/ax_platform_node.cc',
47 'platform/ax_platform_node.h', 47 'platform/ax_platform_node.h',
48 'platform/ax_platform_node_base.cc', 48 'platform/ax_platform_node_base.cc',
49 'platform/ax_platform_node_base.h', 49 'platform/ax_platform_node_base.h',
50 'platform/ax_platform_node_delegate.h', 50 'platform/ax_platform_node_delegate.h',
51 'platform/ax_platform_node_mac.h', 51 'platform/ax_platform_node_mac.h',
52 'platform/ax_platform_node_mac.mm', 52 'platform/ax_platform_node_mac.mm',
53 'platform/ax_platform_node_win.h', 53 ]
54 'platform/ax_platform_node_win.cc',
55 ],
56 'conditions': [
57 ['OS=="win"', {
58 'dependencies': [
59 '../../third_party/iaccessible2/iaccessible2.gyp:iaccessible2'
60 ],
61 }],
62 ],
63 }, 54 },
64 { 55 {
65 'target_name': 'accessibility_test_support', 56 'target_name': 'accessibility_test_support',
66 'type': 'static_library', 57 'type': 'static_library',
67 'dependencies': [ 58 'dependencies': [
68 '../../base/base.gyp:base', 59 '../../base/base.gyp:base',
69 'accessibility' 60 'accessibility'
70 ], 61 ],
71 'sources': [ 62 'sources': [
72 'platform/test_ax_node_wrapper.cc',
73 'platform/test_ax_node_wrapper.h',
74 'tree_generator.cc', 63 'tree_generator.cc',
75 'tree_generator.h', 64 'tree_generator.h'
76 ] 65 ]
77 }, 66 },
78 { 67 {
79 'target_name': 'accessibility_unittests', 68 'target_name': 'accessibility_unittests',
80 'type': 'executable', 69 'type': 'executable',
81 'dependencies': [ 70 'dependencies': [
82 '../../base/base.gyp:base', 71 '../../base/base.gyp:base',
83 '../../base/base.gyp:run_all_unittests', 72 '../../base/base.gyp:run_all_unittests',
84 '../../testing/gtest.gyp:gtest', 73 '../../testing/gtest.gyp:gtest',
85 '../gfx/gfx.gyp:gfx', 74 '../gfx/gfx.gyp:gfx',
86 '../gfx/gfx.gyp:gfx_geometry', 75 '../gfx/gfx.gyp:gfx_geometry',
87 'accessibility', 76 'accessibility',
88 'accessibility_test_support', 77 'accessibility_test_support',
89 'ax_gen', 78 'ax_gen',
90 ], 79 ],
91 'sources': [ 80 'sources': [
92 'ax_generated_tree_unittest.cc', 81 'ax_generated_tree_unittest.cc',
93 'ax_text_utils_unittest.cc', 82 'ax_text_utils_unittest.cc',
94 'ax_tree_serializer_unittest.cc', 83 'ax_tree_serializer_unittest.cc',
95 'ax_tree_unittest.cc', 84 'ax_tree_unittest.cc',
96 » 'platform/ax_platform_node_win_unittest.cc' 85 ]
97 ],
98 'conditions': [
99 ['OS=="win"', {
100 'dependencies': [
101 '../../third_party/iaccessible2/iaccessible2.gyp:iaccessible2'
102 ],
103 }],
104 ],
105 }, 86 },
106 { 87 {
107 'target_name': 'ax_gen', 88 'target_name': 'ax_gen',
108 'type': 'static_library', 89 'type': 'static_library',
109 # This target exports a hard dependency because dependent targets may 90 # This target exports a hard dependency because dependent targets may
110 # include ax_enums.h, a generated header. 91 # include ax_enums.h, a generated header.
111 'hard_dependency': 1, 92 'hard_dependency': 1,
112 'dependencies': [ 93 'dependencies': [
113 '../../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyna mic_annotations' 94 '../../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyna mic_annotations'
114 ], 95 ],
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
152 'dependencies': [ 133 'dependencies': [
153 '../../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', 134 '../../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck',
154 ], 135 ],
155 }], 136 }],
156 ], 137 ],
157 }, 138 },
158 ], 139 ],
159 }], 140 }],
160 ], 141 ],
161 } 142 }
OLDNEW
« no previous file with comments | « ui/accessibility/DEPS ('k') | ui/accessibility/platform/ax_platform_node.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698