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