OLD | NEW |
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 425 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
436 }, | 436 }, |
437 { | 437 { |
438 'target_name': 'unit_tests', | 438 'target_name': 'unit_tests', |
439 'type': '<(gtest_target_type)', | 439 'type': '<(gtest_target_type)', |
440 'dependencies': [ | 440 'dependencies': [ |
441 # NOTE: New dependencies should generally be added in the OS!="ios" | 441 # NOTE: New dependencies should generally be added in the OS!="ios" |
442 # dependencies block below, rather than here. | 442 # dependencies block below, rather than here. |
443 # Unit tests should only depend on: | 443 # Unit tests should only depend on: |
444 # 1) everything that the chrome binaries depend on: | 444 # 1) everything that the chrome binaries depend on: |
445 '<@(chromium_browser_dependencies)', | 445 '<@(chromium_browser_dependencies)', |
| 446 '<@(chromium_child_dependencies)', |
446 # 2) test-specific support libraries: | 447 # 2) test-specific support libraries: |
447 '../base/base.gyp:test_support_base', | 448 '../base/base.gyp:test_support_base', |
448 '../media/media.gyp:media_test_support', | 449 '../media/media.gyp:media_test_support', |
449 '../net/net.gyp:net', | 450 '../net/net.gyp:net', |
450 '../net/net.gyp:net_test_support', | 451 '../net/net.gyp:net_test_support', |
451 '../sync/sync.gyp:test_support_sync_api', | 452 '../sync/sync.gyp:test_support_sync_api', |
452 '../sync/sync.gyp:test_support_sync_core', | 453 '../sync/sync.gyp:test_support_sync_core', |
453 '../sync/sync.gyp:test_support_sync_internal_api', | 454 '../sync/sync.gyp:test_support_sync_internal_api', |
454 '../sync/sync.gyp:test_support_sync_notifier', | 455 '../sync/sync.gyp:test_support_sync_notifier', |
455 '../testing/gmock.gyp:gmock', | 456 '../testing/gmock.gyp:gmock', |
(...skipping 2200 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2656 # more details. | 2657 # more details. |
2657 'DebugInformationFormat': '3', | 2658 'DebugInformationFormat': '3', |
2658 'ProgramDataBaseFileName': '<(PRODUCT_DIR)/unit_tests.exe.pdb', | 2659 'ProgramDataBaseFileName': '<(PRODUCT_DIR)/unit_tests.exe.pdb', |
2659 }, | 2660 }, |
2660 }, | 2661 }, |
2661 }, | 2662 }, |
2662 ], | 2663 ], |
2663 }], | 2664 }], |
2664 ], # 'conditions' | 2665 ], # 'conditions' |
2665 } | 2666 } |
OLD | NEW |