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

Side by Side Diff: content/content_tests.gypi

Issue 329863003: Fix accessibility in Windows x64 build. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix typecase Created 6 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 (c) 2013 The Chromium Authors. All rights reserved. 1 # Copyright (c) 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 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'layouttest_support_content', 8 'target_name': 'layouttest_support_content',
9 'type': 'static_library', 9 'type': 'static_library',
10 'conditions': [ 10 'conditions': [
(...skipping 1181 matching lines...) Expand 10 before | Expand all | Expand 10 after
1192 'Debug_Base': { 1192 'Debug_Base': {
1193 'msvs_settings': { 1193 'msvs_settings': {
1194 'VCLinkerTool': { 1194 'VCLinkerTool': {
1195 'LinkIncremental': '<(msvs_large_module_debug_link_mode)', 1195 'LinkIncremental': '<(msvs_large_module_debug_link_mode)',
1196 }, 1196 },
1197 }, 1197 },
1198 }, 1198 },
1199 }, 1199 },
1200 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 1200 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
1201 'msvs_disabled_warnings': [ 4267, ], 1201 'msvs_disabled_warnings': [ 4267, ],
1202 }, { # OS!="win"
1203 'sources!': [
1204 'browser/accessibility/accessibility_win_browsertest.cc',
1205 ],
1206 }], 1202 }],
1207 ['OS=="win" and win_use_allocator_shim==1', { 1203 ['OS=="win" and win_use_allocator_shim==1', {
1208 'dependencies': [ 1204 'dependencies': [
1209 '../base/allocator/allocator.gyp:allocator', 1205 '../base/allocator/allocator.gyp:allocator',
1210 ], 1206 ],
1211 }], 1207 }],
1212 ['OS=="linux"', { 1208 ['OS=="linux"', {
1213 'sources!': [ 1209 'sources!': [
1214 'browser/accessibility/dump_accessibility_tree_browsertest.cc', 1210 'browser/accessibility/dump_accessibility_tree_browsertest.cc',
1215 ], 1211 ],
(...skipping 14 matching lines...) Expand all
1230 ], 1226 ],
1231 }], 1227 }],
1232 ['OS=="mac"', { 1228 ['OS=="mac"', {
1233 'dependencies': [ 1229 'dependencies': [
1234 'content_shell', # Needed for Content Shell.app's Helper. 1230 'content_shell', # Needed for Content Shell.app's Helper.
1235 ], 1231 ],
1236 'sources': [ 1232 'sources': [
1237 'renderer/external_popup_menu_browsertest.cc', 1233 'renderer/external_popup_menu_browsertest.cc',
1238 ], 1234 ],
1239 }], 1235 }],
1240 ['use_aura==1', {
1241 'sources!': [
1242 'browser/accessibility/accessibility_win_browsertest.cc',
1243 ],
1244 }],
1245 ['use_aura==1 and OS!="win"', { 1236 ['use_aura==1 and OS!="win"', {
1246 'sources!': [ 1237 'sources!': [
1247 'browser/plugin_browsertest.cc', 1238 'browser/plugin_browsertest.cc',
1248 ], 1239 ],
1249 }], 1240 }],
1250 ['use_aura==1 or toolkit_views==1', { 1241 ['use_aura==1 or toolkit_views==1', {
1251 'dependencies': [ 1242 'dependencies': [
1252 '../ui/events/events.gyp:events_test_support', 1243 '../ui/events/events.gyp:events_test_support',
1253 ], 1244 ],
1254 }], 1245 }],
(...skipping 564 matching lines...) Expand 10 before | Expand all | Expand 10 after
1819 'files': ['<(PRODUCT_DIR)/libnpapi_test_plugin.so'], 1810 'files': ['<(PRODUCT_DIR)/libnpapi_test_plugin.so'],
1820 }, 1811 },
1821 ], 1812 ],
1822 }], 1813 }],
1823 ], 1814 ],
1824 }, 1815 },
1825 ], 1816 ],
1826 }], 1817 }],
1827 ], 1818 ],
1828 } 1819 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698