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

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: 2nd draft, based on 423513005 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', 65 # '../../third_party/iaccessible2/iaccessible2.gyp:iaccessible2',
dmazzoni 2014/07/29 06:19:12 delete this
Andre 2014/07/29 21:58:56 Done.
66 'accessibility' 66 'accessibility'
67 ], 67 ],
68 'defines': [ 68 'defines': [
69 'ACCESSIBILITY_IMPLEMENTATION', 69 'ACCESSIBILITY_IMPLEMENTATION',
70 ], 70 ],
71 'sources': [ 71 'sources': [
72 'platform/ax_platform_node.cc', 72 'platform/ax_platform_node.cc',
73 'platform/ax_platform_node.h', 73 'platform/ax_platform_node.h',
74 'platform/ax_platform_node_mac.h',
75 'platform/ax_platform_node_mac.mm',
74 'platform/ax_platform_node_win.cc', 76 'platform/ax_platform_node_win.cc',
75 'platform/ax_platform_node_win.h', 77 'platform/ax_platform_node_win.h',
76 ] 78 ]
77 }, 79 },
78 { 80 {
79 'target_name': 'accessibility_unittests', 81 'target_name': 'accessibility_unittests',
80 'type': 'executable', 82 'type': 'executable',
81 'dependencies': [ 83 'dependencies': [
82 '../../base/base.gyp:base', 84 '../../base/base.gyp:base',
83 '../../base/base.gyp:run_all_unittests', 85 '../../base/base.gyp:run_all_unittests',
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
118 ], 120 ],
119 'non_compiled_schema_files': [], 121 'non_compiled_schema_files': [],
120 'cc_dir': 'ui/accessibility', 122 'cc_dir': 'ui/accessibility',
121 # TODO(dtseng): Change this once all files under ui/accessibility 123 # TODO(dtseng): Change this once all files under ui/accessibility
122 # namespaced under ui::ax. 124 # namespaced under ui::ax.
123 'root_namespace': '', 125 'root_namespace': '',
124 }, 126 },
125 }, 127 },
126 ], 128 ],
127 } 129 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698