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

Side by Side Diff: chrome/chrome_tests_unit.gypi

Issue 21453003: Fix content_browsertests and other full stack tests in multiple_dll (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 7 years, 4 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 | « chrome/chrome_exe.gypi ('k') | chrome/test/gpu/test_support_gpu.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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',
11 'dependencies': [ 11 'dependencies': [
12 # NOTE: New dependencies should generally be added in the OS!="ios" 12 # NOTE: New dependencies should generally be added in the OS!="ios"
13 # dependencies block below, rather than here. 13 # dependencies block below, rather than here.
14 'app/policy/cloud_policy_codegen.gyp:policy_test_support', 14 'app/policy/cloud_policy_codegen.gyp:policy_test_support',
15 'browser', 15 'browser',
16 'chrome_resources.gyp:chrome_resources', 16 'chrome_resources.gyp:chrome_resources',
17 'chrome_resources.gyp:chrome_strings', 17 'chrome_resources.gyp:chrome_strings',
18 'chrome_resources.gyp:theme_resources', 18 'chrome_resources.gyp:theme_resources',
19 'common', 19 'common',
20 '../base/base.gyp:test_support_base', 20 '../base/base.gyp:test_support_base',
21 '../base/base.gyp:base_prefs_test_support', 21 '../base/base.gyp:base_prefs_test_support',
22 '../components/components.gyp:sessions_test_support', 22 '../components/components.gyp:sessions_test_support',
23 '../content/content.gyp:content_app', 23 '../content/content.gyp:content_app_both',
24 '../content/content.gyp:test_support_content', 24 '../content/content.gyp:test_support_content',
25 '../media/media.gyp:media_test_support', 25 '../media/media.gyp:media_test_support',
26 '../net/net.gyp:net', 26 '../net/net.gyp:net',
27 '../net/net.gyp:net_test_support', 27 '../net/net.gyp:net_test_support',
28 '../skia/skia.gyp:skia', 28 '../skia/skia.gyp:skia',
29 '../sync/sync.gyp:sync', 29 '../sync/sync.gyp:sync',
30 '../testing/gmock.gyp:gmock', 30 '../testing/gmock.gyp:gmock',
31 '../testing/gtest.gyp:gtest', 31 '../testing/gtest.gyp:gtest',
32 '../third_party/zlib/zlib.gyp:zlib', 32 '../third_party/zlib/zlib.gyp:zlib',
33 ], 33 ],
(...skipping 397 matching lines...) Expand 10 before | Expand all | Expand 10 after
431 'type': '<(gtest_target_type)', 431 'type': '<(gtest_target_type)',
432 'dependencies': [ 432 'dependencies': [
433 # NOTE: New dependencies should generally be added in the OS!="ios" 433 # NOTE: New dependencies should generally be added in the OS!="ios"
434 # dependencies block below, rather than here. 434 # dependencies block below, rather than here.
435 # Unit tests should only depend on: 435 # Unit tests should only depend on:
436 # 1) everything that the chrome binaries depend on: 436 # 1) everything that the chrome binaries depend on:
437 '<@(chromium_browser_dependencies)', 437 '<@(chromium_browser_dependencies)',
438 '<@(chromium_child_dependencies)', 438 '<@(chromium_child_dependencies)',
439 # 2) test-specific support libraries: 439 # 2) test-specific support libraries:
440 '../base/base.gyp:test_support_base', 440 '../base/base.gyp:test_support_base',
441 '../content/content.gyp:content_app_both',
441 '../media/media.gyp:media_test_support', 442 '../media/media.gyp:media_test_support',
442 '../net/net.gyp:net', 443 '../net/net.gyp:net',
443 '../net/net.gyp:net_test_support', 444 '../net/net.gyp:net_test_support',
444 '../sync/sync.gyp:test_support_sync_api', 445 '../sync/sync.gyp:test_support_sync_api',
445 '../sync/sync.gyp:test_support_sync_core', 446 '../sync/sync.gyp:test_support_sync_core',
446 '../sync/sync.gyp:test_support_sync_internal_api', 447 '../sync/sync.gyp:test_support_sync_internal_api',
447 '../sync/sync.gyp:test_support_sync_notifier', 448 '../sync/sync.gyp:test_support_sync_notifier',
448 '../testing/gmock.gyp:gmock', 449 '../testing/gmock.gyp:gmock',
449 '../testing/gtest.gyp:gtest', 450 '../testing/gtest.gyp:gtest',
450 'test_support_common', 451 'test_support_common',
(...skipping 2137 matching lines...) Expand 10 before | Expand all | Expand 10 after
2588 ], 2589 ],
2589 }, 2590 },
2590 { 2591 {
2591 'target_name': 'chrome_app_unittests', 2592 'target_name': 'chrome_app_unittests',
2592 'type': 'executable', 2593 'type': 'executable',
2593 'dependencies': [ 2594 'dependencies': [
2594 # unit tests should only depend on 2595 # unit tests should only depend on
2595 # 1) everything that the chrome binaries depend on: 2596 # 1) everything that the chrome binaries depend on:
2596 '<@(chromium_browser_dependencies)', 2597 '<@(chromium_browser_dependencies)',
2597 '<@(chromium_child_dependencies)', 2598 '<@(chromium_child_dependencies)',
2599 '../content/content.gyp:content_app_both',
2598 # 2) test-specific support libraries: 2600 # 2) test-specific support libraries:
2599 '../testing/gmock.gyp:gmock', 2601 '../testing/gmock.gyp:gmock',
2600 '../testing/gtest.gyp:gtest', 2602 '../testing/gtest.gyp:gtest',
2601 'test_support_common', 2603 'test_support_common',
2602 ], 2604 ],
2603 'include_dirs': [ 2605 'include_dirs': [
2604 '..', 2606 '..',
2605 ], 2607 ],
2606 'sources': [ 2608 'sources': [
2607 'app/breakpad_field_trial_win.cc', 2609 'app/breakpad_field_trial_win.cc',
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
2697 # more details. 2699 # more details.
2698 'DebugInformationFormat': '3', 2700 'DebugInformationFormat': '3',
2699 'ProgramDataBaseFileName': '<(PRODUCT_DIR)/unit_tests.exe.pdb', 2701 'ProgramDataBaseFileName': '<(PRODUCT_DIR)/unit_tests.exe.pdb',
2700 }, 2702 },
2701 }, 2703 },
2702 }, 2704 },
2703 ], 2705 ],
2704 }], 2706 }],
2705 ], # 'conditions' 2707 ], # 'conditions'
2706 } 2708 }
OLDNEW
« no previous file with comments | « chrome/chrome_exe.gypi ('k') | chrome/test/gpu/test_support_gpu.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698