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

Side by Side Diff: chrome/chrome_tests.gypi

Issue 1697843002: Provide angle_unittests_run independent of archive_gpu_tests. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 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 | « no previous file | 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 'variables': { 5 'variables': {
6 'chrome_browser_extensions_test_support_sources': [ 6 'chrome_browser_extensions_test_support_sources': [
7 # A list of sources which is shared between different browser tests. 7 # A list of sources which is shared between different browser tests.
8 'browser/apps/app_browsertest_util.cc', 8 'browser/apps/app_browsertest_util.cc',
9 'browser/apps/app_browsertest_util.h', 9 'browser/apps/app_browsertest_util.h',
10 'browser/extensions/browsertest_util.cc', 10 'browser/extensions/browsertest_util.cc',
(...skipping 3213 matching lines...) Expand 10 before | Expand all | Expand 10 after
3224 ], 3224 ],
3225 }], 3225 }],
3226 ['OS=="win"', { 3226 ['OS=="win"', {
3227 'dependencies': [ 3227 'dependencies': [
3228 'chrome.gyp:crash_service', 3228 'chrome.gyp:crash_service',
3229 ], 3229 ],
3230 }], 3230 }],
3231 ], 3231 ],
3232 }, 3232 },
3233 { 3233 {
3234 'target_name': 'gpu_tests_base',
3235 'type': 'none',
3236 'dependencies': [
3237 # depend on icu to fix races. http://crbug.com/417583
3238 '../third_party/icu/icu.gyp:icudata',
3239 ],
3240 # Set this so we aren't included as a target in files that
3241 # include this file via a wildcard (such as chrome_tests.gypi).
3242 # If we didn't do this the All target ends up with a rule that
3243 # makes it unnecessarily compile in certain situations.
3244 'suppress_wildcard': 1,
3245 'direct_dependent_settings': {
3246 'includes': [
3247 '../build/isolate.gypi',
3248 ],
3249 },
3250 },
3251 {
3252 # GN: //gpu:angle_unittests_run
3253 'target_name': 'angle_unittests_run',
3254 'type': 'none',
3255 'dependencies': [
3256 '../gpu/gpu.gyp:angle_unittests',
3257 'gpu_tests_base',
3258 ],
3259 'sources': [
3260 'angle_unittests.isolate',
3261 ],
3262 },
3263 {
3234 'target_name': 'browser_tests_run', 3264 'target_name': 'browser_tests_run',
3235 'type': 'none', 3265 'type': 'none',
3236 'dependencies': [ 3266 'dependencies': [
3237 '../content/content_shell_and_tests.gyp:copy_test_netscape_plugin', 3267 '../content/content_shell_and_tests.gyp:copy_test_netscape_plugin',
3238 'browser_tests', 3268 'browser_tests',
3239 'chrome', 3269 'chrome',
3240 ], 3270 ],
3241 'includes': [ 3271 'includes': [
3242 '../build/isolate.gypi', 3272 '../build/isolate.gypi',
3243 ], 3273 ],
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after
3351 ], 3381 ],
3352 'sources': [ 3382 'sources': [
3353 'sync_integration_tests.isolate', 3383 'sync_integration_tests.isolate',
3354 ], 3384 ],
3355 }, 3385 },
3356 ], 3386 ],
3357 'conditions': [ 3387 'conditions': [
3358 ['archive_gpu_tests==1', { 3388 ['archive_gpu_tests==1', {
3359 'targets': [ 3389 'targets': [
3360 { 3390 {
3361 'target_name': 'gpu_tests_base',
3362 'type': 'none',
3363 'dependencies': [
3364 # depend on icu to fix races. http://crbug.com/417583
3365 '../third_party/icu/icu.gyp:icudata',
3366 ],
3367 # Set this so we aren't included as a target in files that
3368 # include this file via a wildcard (such as chrome_tests.gypi).
3369 # If we didn't do this the All target ends up with a rule that
3370 # makes it unnecessarily compile in certain situations.
3371 'suppress_wildcard': 1,
3372 'direct_dependent_settings': {
3373 'includes': [
3374 '../build/isolate.gypi',
3375 ],
3376 },
3377 },
3378 {
3379 # GN: //gpu:angle_unittests_run
3380 'target_name': 'angle_unittests_run',
3381 'type': 'none',
3382 'dependencies': [
3383 '../gpu/gpu.gyp:angle_unittests',
3384 'gpu_tests_base',
3385 ],
3386 'sources': [
3387 'angle_unittests.isolate',
3388 ],
3389 },
3390 {
3391 # GN: //gpu:gl_tests_run 3391 # GN: //gpu:gl_tests_run
3392 'target_name': 'gl_tests_run', 3392 'target_name': 'gl_tests_run',
3393 'type': 'none', 3393 'type': 'none',
3394 'dependencies': [ 3394 'dependencies': [
3395 '../gpu/gpu.gyp:gl_tests', 3395 '../gpu/gpu.gyp:gl_tests',
3396 'gpu_tests_base', 3396 'gpu_tests_base',
3397 ], 3397 ],
3398 'sources': [ 3398 'sources': [
3399 'gl_tests.isolate', 3399 'gl_tests.isolate',
3400 ], 3400 ],
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after
3510 'browser', 3510 'browser',
3511 ], 3511 ],
3512 'sources': [ 3512 'sources': [
3513 'tools/service_discovery_sniffer/service_discovery_sniffer.cc', 3513 'tools/service_discovery_sniffer/service_discovery_sniffer.cc',
3514 'tools/service_discovery_sniffer/service_discovery_sniffer.h', 3514 'tools/service_discovery_sniffer/service_discovery_sniffer.h',
3515 ], 3515 ],
3516 }] 3516 }]
3517 }], 3517 }],
3518 ], # 'conditions' 3518 ], # 'conditions'
3519 } 3519 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698