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

Side by Side Diff: chrome/chrome_tests_unit.gypi

Issue 401623006: Extract ScopedTestNSSDB from nss_util. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Added a DCHECK to SetTestSystemKeySlot. Created 6 years, 5 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
OLDNEW
1 # Copyright 2012 The Chromium Authors. All rights reserved. 1 # Copyright 2012 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 'targets': [ 5 'targets': [
6 { 6 {
7 # This target contains mocks and test utilities that don't belong in 7 # This target contains mocks and test utilities that don't belong in
8 # production libraries but are used by more than one test executable. 8 # production libraries but are used by more than one test executable.
9 'target_name': 'test_support_common', 9 'target_name': 'test_support_common',
10 'type': 'static_library', 10 'type': 'static_library',
(...skipping 477 matching lines...) Expand 10 before | Expand all | Expand 10 after
488 # dependencies block below, rather than here. 488 # dependencies block below, rather than here.
489 # Unit tests should only depend on: 489 # Unit tests should only depend on:
490 # 1) everything that the chrome binaries depend on: 490 # 1) everything that the chrome binaries depend on:
491 '<@(chromium_browser_dependencies)', 491 '<@(chromium_browser_dependencies)',
492 '<@(chromium_child_dependencies)', 492 '<@(chromium_child_dependencies)',
493 # 2) test-specific support libraries: 493 # 2) test-specific support libraries:
494 '../base/base.gyp:test_support_base', 494 '../base/base.gyp:test_support_base',
495 '../components/components_resources.gyp:components_resources', 495 '../components/components_resources.gyp:components_resources',
496 '../content/content_shell_and_tests.gyp:test_support_content', 496 '../content/content_shell_and_tests.gyp:test_support_content',
497 '../content/content.gyp:content_app_both', 497 '../content/content.gyp:content_app_both',
498 '../crypto/crypto.gyp:crypto_test_support',
Ryan Sleevi 2014/07/23 02:15:28 Should this be moved into a condition for use_nss=
pneubeck (no reviews) 2014/07/23 14:34:16 it's a none target now if use_nss==0.
498 '../net/net.gyp:net', 499 '../net/net.gyp:net',
499 '../net/net.gyp:net_test_support', 500 '../net/net.gyp:net_test_support',
500 '../sync/sync.gyp:test_support_sync_api', 501 '../sync/sync.gyp:test_support_sync_api',
501 '../sync/sync.gyp:test_support_sync_core', 502 '../sync/sync.gyp:test_support_sync_core',
502 '../sync/sync.gyp:test_support_sync_internal_api', 503 '../sync/sync.gyp:test_support_sync_internal_api',
503 '../testing/gmock.gyp:gmock', 504 '../testing/gmock.gyp:gmock',
504 '../testing/gtest.gyp:gtest', 505 '../testing/gtest.gyp:gtest',
505 'test_support_common', 506 'test_support_common',
506 'test_support_unit', 507 'test_support_unit',
507 # 3) anything tests directly depend on 508 # 3) anything tests directly depend on
(...skipping 2425 matching lines...) Expand 10 before | Expand all | Expand 10 after
2933 'dependencies': [ 2934 'dependencies': [
2934 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', 2935 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck',
2935 ], 2936 ],
2936 }], 2937 }],
2937 ], 2938 ],
2938 }, 2939 },
2939 ], 2940 ],
2940 }], 2941 }],
2941 ], # 'conditions' 2942 ], # 'conditions'
2942 } 2943 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698