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

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 sievers review 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 138 matching lines...) Expand 10 before | Expand all | Expand 10 after
149 'schema_files': [ 149 'schema_files': [
150 'ax_enums.idl', 150 'ax_enums.idl',
151 ], 151 ],
152 'non_compiled_schema_files': [], 152 'non_compiled_schema_files': [],
153 'cc_dir': 'ui/accessibility', 153 'cc_dir': 'ui/accessibility',
154 # TODO(dtseng): Change this once all files under ui/accessibility 154 # TODO(dtseng): Change this once all files under ui/accessibility
155 # namespaced under ui::ax. 155 # namespaced under ui::ax.
156 'root_namespace': 'ui', 156 'root_namespace': 'ui',
157 }, 157 },
158 }, 158 },
159 {
160 'target_name': 'ax_enumerations_java',
161 'type': 'none',
162 'variables': {
163 'source_file': 'ax_enums.idl',
164 },
165 'includes': [ '../../build/android/java_cpp_enum.gypi' ],
166 },
159 ], 167 ],
160 'conditions': [ 168 'conditions': [
161 ['test_isolation_mode != "noop"', { 169 ['test_isolation_mode != "noop"', {
162 'targets': [ 170 'targets': [
163 { 171 {
164 'target_name': 'accessibility_unittests_run', 172 'target_name': 'accessibility_unittests_run',
165 'type': 'none', 173 'type': 'none',
166 'dependencies': [ 174 'dependencies': [
167 'accessibility_unittests', 175 'accessibility_unittests',
168 ], 176 ],
169 'includes': [ 177 'includes': [
170 '../../build/isolate.gypi', 178 '../../build/isolate.gypi',
171 ], 179 ],
172 'sources': [ 180 'sources': [
173 'accessibility_unittests.isolate', 181 'accessibility_unittests.isolate',
174 ], 182 ],
175 'conditions': [ 183 'conditions': [
176 ['use_x11 == 1', { 184 ['use_x11 == 1', {
177 'dependencies': [ 185 'dependencies': [
178 '../../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', 186 '../../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck',
179 ], 187 ],
180 }], 188 }],
181 ], 189 ],
182 }, 190 },
183 ], 191 ],
184 }], 192 }],
185 ], 193 ],
186 } 194 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698