| 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 477 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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', |
| 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 Loading... |
| 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 } |
| OLD | NEW |