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

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

Issue 1137393003: Add style information to the snapshot node (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: address code review (dependency and non-existent style) Created 5 years, 6 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': [
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
77 }, 77 },
78 }], 78 }],
79 ['OS!="linux" or chromeos==1 or use_x11==0', { 79 ['OS!="linux" or chromeos==1 or use_x11==0', {
80 'sources!': [ 80 'sources!': [
81 'platform/ax_platform_node_auralinux.cc', 81 'platform/ax_platform_node_auralinux.cc',
82 'platform/ax_platform_node_auralinux.h', 82 'platform/ax_platform_node_auralinux.h',
83 'platform/atk_util_auralinux.cc', 83 'platform/atk_util_auralinux.cc',
84 'platform/atk_util_auralinux.h', 84 'platform/atk_util_auralinux.h',
85 ], 85 ],
86 }], 86 }],
87 ['OS=="android"', {
88 'dependencies': [
89 'ui_accessibility_java'
90 ],
91 }],
87 ], 92 ],
88 }, 93 },
89 { 94 {
95 'target_name': 'ui_accessibility_java',
96 'type': 'none',
97 'variables': {
98 'java_in_dir': '<(DEPTH)/build/android/empty',
99 'has_java_resources': 0,
100 },
101 'dependencies': [
102 'ax_enumerations_java',
103 ],
104 'includes': [ '../../build/java.gypi' ],
105 },
106 {
107 'target_name': 'ax_enumerations_java',
108 'type': 'none',
109 'variables': {
110 'source_file': 'ax_enums.idl',
111 },
112 'includes': [ '../../build/android/java_cpp_enum.gypi' ],
113 },
114 {
90 'target_name': 'accessibility_test_support', 115 'target_name': 'accessibility_test_support',
91 'type': 'static_library', 116 'type': 'static_library',
92 'dependencies': [ 117 'dependencies': [
93 '../../base/base.gyp:base', 118 '../../base/base.gyp:base',
94 'accessibility' 119 'accessibility'
95 ], 120 ],
96 'sources': [ 121 'sources': [
97 'platform/test_ax_node_wrapper.cc', 122 'platform/test_ax_node_wrapper.cc',
98 'platform/test_ax_node_wrapper.h', 123 'platform/test_ax_node_wrapper.h',
99 'tree_generator.cc', 124 'tree_generator.cc',
(...skipping 11 matching lines...) Expand all
111 '../gfx/gfx.gyp:gfx_geometry', 136 '../gfx/gfx.gyp:gfx_geometry',
112 'accessibility', 137 'accessibility',
113 'accessibility_test_support', 138 'accessibility_test_support',
114 'ax_gen', 139 'ax_gen',
115 ], 140 ],
116 'sources': [ 141 'sources': [
117 'ax_generated_tree_unittest.cc', 142 'ax_generated_tree_unittest.cc',
118 'ax_text_utils_unittest.cc', 143 'ax_text_utils_unittest.cc',
119 'ax_tree_serializer_unittest.cc', 144 'ax_tree_serializer_unittest.cc',
120 'ax_tree_unittest.cc', 145 'ax_tree_unittest.cc',
121 » 'platform/ax_platform_node_win_unittest.cc' 146 » 'platform/ax_platform_node_win_unittest.cc'
122 ], 147 ],
123 'conditions': [ 148 'conditions': [
124 ['OS=="win"', { 149 ['OS=="win"', {
125 'dependencies': [ 150 'dependencies': [
126 '../../third_party/iaccessible2/iaccessible2.gyp:iaccessible2' 151 '../../third_party/iaccessible2/iaccessible2.gyp:iaccessible2'
127 ], 152 ],
128 }], 153 }],
129 ], 154 ],
130 }, 155 },
131 { 156 {
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
177 'dependencies': [ 202 'dependencies': [
178 '../../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', 203 '../../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck',
179 ], 204 ],
180 }], 205 }],
181 ], 206 ],
182 }, 207 },
183 ], 208 ],
184 }], 209 }],
185 ], 210 ],
186 } 211 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698