| 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 472 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 483 # dependencies block below, rather than here. | 483 # dependencies block below, rather than here. |
| 484 # Unit tests should only depend on: | 484 # Unit tests should only depend on: |
| 485 # 1) everything that the chrome binaries depend on: | 485 # 1) everything that the chrome binaries depend on: |
| 486 '<@(chromium_browser_dependencies)', | 486 '<@(chromium_browser_dependencies)', |
| 487 '<@(chromium_child_dependencies)', | 487 '<@(chromium_child_dependencies)', |
| 488 # 2) test-specific support libraries: | 488 # 2) test-specific support libraries: |
| 489 '../base/base.gyp:test_support_base', | 489 '../base/base.gyp:test_support_base', |
| 490 '../components/components_resources.gyp:components_resources', | 490 '../components/components_resources.gyp:components_resources', |
| 491 '../content/content_shell_and_tests.gyp:test_support_content', | 491 '../content/content_shell_and_tests.gyp:test_support_content', |
| 492 '../content/content.gyp:content_app_both', | 492 '../content/content.gyp:content_app_both', |
| 493 '../crypto/crypto.gyp:crypto_test_support', |
| 493 '../net/net.gyp:net', | 494 '../net/net.gyp:net', |
| 494 '../net/net.gyp:net_test_support', | 495 '../net/net.gyp:net_test_support', |
| 495 '../sync/sync.gyp:test_support_sync_api', | 496 '../sync/sync.gyp:test_support_sync_api', |
| 496 '../sync/sync.gyp:test_support_sync_core', | 497 '../sync/sync.gyp:test_support_sync_core', |
| 497 '../sync/sync.gyp:test_support_sync_internal_api', | 498 '../sync/sync.gyp:test_support_sync_internal_api', |
| 498 '../testing/gmock.gyp:gmock', | 499 '../testing/gmock.gyp:gmock', |
| 499 '../testing/gtest.gyp:gtest', | 500 '../testing/gtest.gyp:gtest', |
| 500 'test_support_common', | 501 'test_support_common', |
| 501 'test_support_unit', | 502 'test_support_unit', |
| 502 # 3) anything tests directly depend on | 503 # 3) anything tests directly depend on |
| (...skipping 2413 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2916 'dependencies': [ | 2917 'dependencies': [ |
| 2917 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', | 2918 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', |
| 2918 ], | 2919 ], |
| 2919 }], | 2920 }], |
| 2920 ], | 2921 ], |
| 2921 }, | 2922 }, |
| 2922 ], | 2923 ], |
| 2923 }], | 2924 }], |
| 2924 ], # 'conditions' | 2925 ], # 'conditions' |
| 2925 } | 2926 } |
| OLD | NEW |