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

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

Issue 420653003: MacViews: Accessibility bridge (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix double delete. Add NativeViewAccessibilityTest. Created 6 years, 4 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 | Annotate | Revision Log
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 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 'sources': [ 55 'sources': [
56 'tree_generator.cc', 56 'tree_generator.cc',
57 'tree_generator.h' 57 'tree_generator.h'
58 ] 58 ]
59 }, 59 },
60 { 60 {
61 'target_name': 'accessibility_platform', 61 'target_name': 'accessibility_platform',
62 'type': 'static_library', 62 'type': 'static_library',
63 'dependencies': [ 63 'dependencies': [
64 '../../base/base.gyp:base', 64 '../../base/base.gyp:base',
65 '../../third_party/iaccessible2/iaccessible2.gyp:iaccessible2',
66 'accessibility' 65 'accessibility'
67 ], 66 ],
68 'defines': [ 67 'defines': [
69 'ACCESSIBILITY_IMPLEMENTATION', 68 'ACCESSIBILITY_IMPLEMENTATION',
70 ], 69 ],
71 'sources': [ 70 'sources': [
72 'platform/ax_platform_node.cc', 71 'platform/ax_platform_node.cc',
73 'platform/ax_platform_node.h', 72 'platform/ax_platform_node.h',
73 'platform/ax_platform_node_base.cc',
74 'platform/ax_platform_node_base.h',
75 'platform/ax_platform_node_mac.h',
76 'platform/ax_platform_node_mac.mm',
74 'platform/ax_platform_node_win.cc', 77 'platform/ax_platform_node_win.cc',
75 'platform/ax_platform_node_win.h', 78 'platform/ax_platform_node_win.h',
76 ] 79 ]
77 }, 80 },
78 { 81 {
79 'target_name': 'accessibility_unittests', 82 'target_name': 'accessibility_unittests',
80 'type': 'executable', 83 'type': 'executable',
81 'dependencies': [ 84 'dependencies': [
82 '../../base/base.gyp:base', 85 '../../base/base.gyp:base',
83 '../../base/base.gyp:run_all_unittests', 86 '../../base/base.gyp:run_all_unittests',
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
118 ], 121 ],
119 'non_compiled_schema_files': [], 122 'non_compiled_schema_files': [],
120 'cc_dir': 'ui/accessibility', 123 'cc_dir': 'ui/accessibility',
121 # TODO(dtseng): Change this once all files under ui/accessibility 124 # TODO(dtseng): Change this once all files under ui/accessibility
122 # namespaced under ui::ax. 125 # namespaced under ui::ax.
123 'root_namespace': '', 126 'root_namespace': '',
124 }, 127 },
125 }, 128 },
126 ], 129 ],
127 } 130 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698