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

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: add content dependency to ui_accessibility_java for GN 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
« no previous file with comments | « ui/accessibility/BUILD.gn ('k') | ui/accessibility/ax_enums.idl » ('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 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 {
90 'target_name': 'accessibility_test_support', 95 'target_name': 'accessibility_test_support',
91 'type': 'static_library', 96 'type': 'static_library',
92 'dependencies': [ 97 'dependencies': [
93 '../../base/base.gyp:base', 98 '../../base/base.gyp:base',
94 'accessibility' 99 'accessibility'
95 ], 100 ],
96 'sources': [ 101 'sources': [
(...skipping 14 matching lines...) Expand all
111 '../gfx/gfx.gyp:gfx_geometry', 116 '../gfx/gfx.gyp:gfx_geometry',
112 'accessibility', 117 'accessibility',
113 'accessibility_test_support', 118 'accessibility_test_support',
114 'ax_gen', 119 'ax_gen',
115 ], 120 ],
116 'sources': [ 121 'sources': [
117 'ax_generated_tree_unittest.cc', 122 'ax_generated_tree_unittest.cc',
118 'ax_text_utils_unittest.cc', 123 'ax_text_utils_unittest.cc',
119 'ax_tree_serializer_unittest.cc', 124 'ax_tree_serializer_unittest.cc',
120 'ax_tree_unittest.cc', 125 'ax_tree_unittest.cc',
121 » 'platform/ax_platform_node_win_unittest.cc' 126 'platform/ax_platform_node_win_unittest.cc'
122 ], 127 ],
123 'conditions': [ 128 'conditions': [
124 ['OS=="win"', { 129 ['OS=="win"', {
125 'dependencies': [ 130 'dependencies': [
126 '../../third_party/iaccessible2/iaccessible2.gyp:iaccessible2' 131 '../../third_party/iaccessible2/iaccessible2.gyp:iaccessible2'
127 ], 132 ],
128 }], 133 }],
129 ], 134 ],
130 }, 135 },
131 { 136 {
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
175 'conditions': [ 180 'conditions': [
176 ['use_x11 == 1', { 181 ['use_x11 == 1', {
177 'dependencies': [ 182 'dependencies': [
178 '../../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', 183 '../../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck',
179 ], 184 ],
180 }], 185 }],
181 ], 186 ],
182 }, 187 },
183 ], 188 ],
184 }], 189 }],
190 ['OS == "android"', {
191 'targets': [
192 {
193 'target_name': 'ui_accessibility_java',
194 'type': 'none',
195 'variables': {
196 'java_in_dir': '<(DEPTH)/build/android/empty',
197 'has_java_resources': 0,
198 },
199 'dependencies': [
200 'ax_enumerations_java',
201 ],
202 'includes': [ '../../build/java.gypi' ],
203 },
204 {
205 'target_name': 'ax_enumerations_java',
206 'type': 'none',
207 'variables': {
208 'source_file': 'ax_enums.idl',
209 },
210 'includes': [ '../../build/android/java_cpp_enum.gypi' ],
211 },
212 ],
213 }],
185 ], 214 ],
186 } 215 }
OLDNEW
« no previous file with comments | « ui/accessibility/BUILD.gn ('k') | ui/accessibility/ax_enums.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698