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

Side by Side Diff: chrome/chrome_tests.gypi

Issue 225143003: Remove the performance_ui_tests targets. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 6 years, 8 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
« no previous file with comments | « build/all.gyp ('k') | no next file » | 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 'includes': [ 5 'includes': [
6 'js_unittest_vars.gypi', 6 'js_unittest_vars.gypi',
7 ], 7 ],
8 'targets': [ 8 'targets': [
9 { 9 {
10 'target_name': 'test_support_ui', 10 'target_name': 'test_support_ui',
(...skipping 2196 matching lines...) Expand 10 before | Expand all | Expand 10 after
2207 ['(use_allocator!="none" and use_allocator!="see_use_tcmalloc") or ( use_allocator=="see_use_tcmalloc" and linux_use_tcmalloc==1)', { 2207 ['(use_allocator!="none" and use_allocator!="see_use_tcmalloc") or ( use_allocator=="see_use_tcmalloc" and linux_use_tcmalloc==1)', {
2208 'dependencies': [ 2208 'dependencies': [
2209 '../base/allocator/allocator.gyp:allocator', 2209 '../base/allocator/allocator.gyp:allocator',
2210 ], 2210 ],
2211 }], 2211 }],
2212 ], 2212 ],
2213 }], 2213 }],
2214 ], # conditions 2214 ], # conditions
2215 }, # target performance_browser_tests 2215 }, # target performance_browser_tests
2216 { 2216 {
2217 'target_name': 'performance_ui_tests',
2218 'type': 'executable',
2219 'dependencies': [
2220 'chrome',
2221 'chrome_resources.gyp:chrome_resources',
2222 'chrome_resources.gyp:chrome_strings',
2223 'debugger',
2224 'test/perf/perf_test.gyp:*',
2225 'test_support_common',
2226 'test_support_ui',
2227 '../base/base.gyp:base',
2228 '../skia/skia.gyp:skia',
2229 '../testing/gtest.gyp:gtest',
2230 '../testing/perf/perf_test.gyp:*',
2231 ],
2232 'sources': [
2233 # TODO(darin): Move other UIPerfTests here.
2234 'test/perf/dom_checker_uitest.cc',
2235 'test/perf/feature_startup_test.cc',
2236 'test/perf/frame_rate/frame_rate_tests.cc',
2237 'test/perf/generate_profile.cc',
2238 'test/perf/generate_profile.h',
2239 'test/perf/memory_test.cc',
2240 'test/perf/perf_ui_test_suite.cc',
2241 'test/perf/run_all_perfuitests.cc',
2242 'test/perf/shutdown_test.cc',
2243 'test/perf/startup_test.cc',
2244 'test/perf/tab_switching_test.cc',
2245 ],
2246 'conditions': [
2247 ['OS=="win" and buildtype=="Official"', {
2248 'configurations': {
2249 'Release': {
2250 'msvs_settings': {
2251 'VCCLCompilerTool': {
2252 'WholeProgramOptimization': 'false',
2253 },
2254 },
2255 },
2256 },
2257 }],
2258 ['OS=="win"', {
2259 'conditions': [
2260 ['win_use_allocator_shim==1', {
2261 'dependencies': [
2262 '<(allocator_target)',
2263 ],
2264 }],
2265 ],
2266 'msvs_large_pdb': 1,
2267 'configurations': {
2268 'Debug_Base': {
2269 'msvs_settings': {
2270 'VCLinkerTool': {
2271 'LinkIncremental': '<(msvs_large_module_debug_link_mode)',
2272 },
2273 },
2274 },
2275 },
2276 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
2277 'msvs_disabled_warnings': [ 4267, ],
2278 }],
2279 ['use_x11==1', {
2280 'dependencies': [
2281 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck',
2282 ],
2283 }],
2284 ['toolkit_uses_gtk == 1', {
2285 'dependencies': [
2286 '../build/linux/system.gyp:gtk',
2287 ],
2288 }],
2289 ['os_posix == 1 and OS != "mac" and OS != "android"', {
2290 'conditions': [
2291 # TODO(dmikurube): Kill linux_use_tcmalloc. http://crbug.com/345554
2292 ['(use_allocator!="none" and use_allocator!="see_use_tcmalloc") or ( use_allocator=="see_use_tcmalloc" and linux_use_tcmalloc==1)', {
2293 'dependencies': [
2294 '../base/allocator/allocator.gyp:allocator',
2295 ],
2296 }],
2297 ],
2298 }],
2299 ['toolkit_views==1', {
2300 'dependencies': [
2301 '../ui/views/views.gyp:views',
2302 ],
2303 }],
2304 ],
2305 },
2306 {
2307 'target_name': 'test_support_sync_integration', 2217 'target_name': 'test_support_sync_integration',
2308 'type': 'static_library', 2218 'type': 'static_library',
2309 'dependencies': [ 2219 'dependencies': [
2310 'browser', 2220 'browser',
2311 'chrome', 2221 'chrome',
2312 'test_support_common', 2222 'test_support_common',
2313 '../base/base.gyp:base', 2223 '../base/base.gyp:base',
2314 '../net/net.gyp:net', 2224 '../net/net.gyp:net',
2315 '../skia/skia.gyp:skia', 2225 '../skia/skia.gyp:skia',
2316 '../sync/sync.gyp:sync', 2226 '../sync/sync.gyp:sync',
(...skipping 790 matching lines...) Expand 10 before | Expand all | Expand 10 after
3107 ['enable_webrtc==1', { 3017 ['enable_webrtc==1', {
3108 'dependencies': [ 3018 'dependencies': [
3109 '../third_party/libjingle/libjingle.gyp:libjingle_webrtc' 3019 '../third_party/libjingle/libjingle.gyp:libjingle_webrtc'
3110 ] 3020 ]
3111 }], 3021 }],
3112 ], 3022 ],
3113 }] 3023 }]
3114 }], 3024 }],
3115 ], # 'conditions' 3025 ], # 'conditions'
3116 } 3026 }
OLDNEW
« no previous file with comments | « build/all.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698