| 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 467 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 478 'type': '<(gtest_target_type)', | 478 'type': '<(gtest_target_type)', |
| 479 'dependencies': [ | 479 'dependencies': [ |
| 480 # NOTE: New dependencies should generally be added in the OS!="ios" | 480 # NOTE: New dependencies should generally be added in the OS!="ios" |
| 481 # dependencies block below, rather than here. | 481 # dependencies block below, rather than here. |
| 482 # Unit tests should only depend on: | 482 # Unit tests should only depend on: |
| 483 # 1) everything that the chrome binaries depend on: | 483 # 1) everything that the chrome binaries depend on: |
| 484 '<@(chromium_browser_dependencies)', | 484 '<@(chromium_browser_dependencies)', |
| 485 '<@(chromium_child_dependencies)', | 485 '<@(chromium_child_dependencies)', |
| 486 # 2) test-specific support libraries: | 486 # 2) test-specific support libraries: |
| 487 '../base/base.gyp:test_support_base', | 487 '../base/base.gyp:test_support_base', |
| 488 '../components/component_resources.gyp:component_resources', |
| 488 '../content/content.gyp:content_app_both', | 489 '../content/content.gyp:content_app_both', |
| 489 '../net/net.gyp:net', | 490 '../net/net.gyp:net', |
| 490 '../net/net.gyp:net_test_support', | 491 '../net/net.gyp:net_test_support', |
| 491 '../rlz/rlz.gyp:test_support_rlz', | 492 '../rlz/rlz.gyp:test_support_rlz', |
| 492 '../sync/sync.gyp:test_support_sync_api', | 493 '../sync/sync.gyp:test_support_sync_api', |
| 493 '../sync/sync.gyp:test_support_sync_core', | 494 '../sync/sync.gyp:test_support_sync_core', |
| 494 '../sync/sync.gyp:test_support_sync_internal_api', | 495 '../sync/sync.gyp:test_support_sync_internal_api', |
| 495 '../sync/sync.gyp:test_support_sync_notifier', | 496 '../sync/sync.gyp:test_support_sync_notifier', |
| 496 '../testing/gmock.gyp:gmock', | 497 '../testing/gmock.gyp:gmock', |
| 497 '../testing/gtest.gyp:gtest', | 498 '../testing/gtest.gyp:gtest', |
| (...skipping 2407 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2905 'browser/ui/app_list/test/fake_profile_store.h', | 2906 'browser/ui/app_list/test/fake_profile_store.h', |
| 2906 'browser/ui/app_list/test/fast_show_pickler_unittest.cc', | 2907 'browser/ui/app_list/test/fast_show_pickler_unittest.cc', |
| 2907 'browser/ui/views/app_list/linux/app_list_linux_unittest.cc', | 2908 'browser/ui/views/app_list/linux/app_list_linux_unittest.cc', |
| 2908 'browser/ui/views/app_list/win/app_list_win_unittest.cc', | 2909 'browser/ui/views/app_list/win/app_list_win_unittest.cc', |
| 2909 ], | 2910 ], |
| 2910 }, | 2911 }, |
| 2911 ], | 2912 ], |
| 2912 }], | 2913 }], |
| 2913 ], # 'conditions' | 2914 ], # 'conditions' |
| 2914 } | 2915 } |
| OLD | NEW |