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

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 build 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 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
51 'dependencies': [ 51 'dependencies': [
52 '../../base/base.gyp:base', 52 '../../base/base.gyp:base',
53 'accessibility' 53 'accessibility'
54 ], 54 ],
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',
62 'type': 'static_library',
63 'dependencies': [
64 '../../base/base.gyp:base',
65 'accessibility'
66 ],
67 'defines': [
68 'ACCESSIBILITY_IMPLEMENTATION',
69 ],
70 'sources': [
71 'platform/ax_platform_node.cc',
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_delegate.h',
76 'platform/ax_platform_node_mac.h',
77 'platform/ax_platform_node_mac.mm',
78 ]
79 },
80 {
61 'target_name': 'accessibility_unittests', 81 'target_name': 'accessibility_unittests',
62 'type': 'executable', 82 'type': 'executable',
63 'dependencies': [ 83 'dependencies': [
64 '../../base/base.gyp:base', 84 '../../base/base.gyp:base',
65 '../../base/base.gyp:run_all_unittests', 85 '../../base/base.gyp:run_all_unittests',
66 '../../testing/gtest.gyp:gtest', 86 '../../testing/gtest.gyp:gtest',
67 '../gfx/gfx.gyp:gfx', 87 '../gfx/gfx.gyp:gfx',
68 '../gfx/gfx.gyp:gfx_geometry', 88 '../gfx/gfx.gyp:gfx_geometry',
69 'accessibility', 89 'accessibility',
70 'accessibility_test_support', 90 'accessibility_test_support',
(...skipping 29 matching lines...) Expand all
100 ], 120 ],
101 'non_compiled_schema_files': [], 121 'non_compiled_schema_files': [],
102 'cc_dir': 'ui/accessibility', 122 'cc_dir': 'ui/accessibility',
103 # TODO(dtseng): Change this once all files under ui/accessibility 123 # TODO(dtseng): Change this once all files under ui/accessibility
104 # namespaced under ui::ax. 124 # namespaced under ui::ax.
105 'root_namespace': '', 125 'root_namespace': '',
106 }, 126 },
107 }, 127 },
108 ], 128 ],
109 } 129 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698