| 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 572 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 583 # All unittests in browser, common, renderer and service. | 583 # All unittests in browser, common, renderer and service. |
| 584 'browser/about_flags_unittest.cc', | 584 'browser/about_flags_unittest.cc', |
| 585 'browser/android/bookmarks/partner_bookmarks_shim_unittest.cc', | 585 'browser/android/bookmarks/partner_bookmarks_shim_unittest.cc', |
| 586 # mock_google_location_settings_helper could logically go in | 586 # mock_google_location_settings_helper could logically go in |
| 587 # test_support_unit. However tests suites in the internal repository | 587 # test_support_unit. However tests suites in the internal repository |
| 588 # depend on an alternate implementation so instead each test suite | 588 # depend on an alternate implementation so instead each test suite |
| 589 # includes the relevant version directly. | 589 # includes the relevant version directly. |
| 590 'browser/android/mock_google_location_settings_helper.cc', | 590 'browser/android/mock_google_location_settings_helper.cc', |
| 591 'browser/android/mock_google_location_settings_helper.h', | 591 'browser/android/mock_google_location_settings_helper.h', |
| 592 'browser/app_controller_mac_unittest.mm', | 592 'browser/app_controller_mac_unittest.mm', |
| 593 'browser/apps/drive/drive_app_mapping_unittest.cc', |
| 593 'browser/apps/ephemeral_app_service_unittest.cc', | 594 'browser/apps/ephemeral_app_service_unittest.cc', |
| 594 'browser/autocomplete/autocomplete_input_unittest.cc', | 595 'browser/autocomplete/autocomplete_input_unittest.cc', |
| 595 'browser/autocomplete/autocomplete_match_unittest.cc', | 596 'browser/autocomplete/autocomplete_match_unittest.cc', |
| 596 'browser/autocomplete/autocomplete_provider_unittest.cc', | 597 'browser/autocomplete/autocomplete_provider_unittest.cc', |
| 597 'browser/autocomplete/autocomplete_result_unittest.cc', | 598 'browser/autocomplete/autocomplete_result_unittest.cc', |
| 598 'browser/autocomplete/bookmark_provider_unittest.cc', | 599 'browser/autocomplete/bookmark_provider_unittest.cc', |
| 599 'browser/autocomplete/builtin_provider_unittest.cc', | 600 'browser/autocomplete/builtin_provider_unittest.cc', |
| 600 'browser/autocomplete/extension_app_provider_unittest.cc', | 601 'browser/autocomplete/extension_app_provider_unittest.cc', |
| 601 'browser/autocomplete/history_quick_provider_unittest.cc', | 602 'browser/autocomplete/history_quick_provider_unittest.cc', |
| 602 'browser/autocomplete/history_url_provider_unittest.cc', | 603 'browser/autocomplete/history_url_provider_unittest.cc', |
| (...skipping 2106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2709 'dependencies': [ | 2710 'dependencies': [ |
| 2710 '../third_party/cld/cld.gyp:cld', | 2711 '../third_party/cld/cld.gyp:cld', |
| 2711 ], | 2712 ], |
| 2712 }], | 2713 }], |
| 2713 ['enable_app_list==1', { | 2714 ['enable_app_list==1', { |
| 2714 'dependencies': [ | 2715 'dependencies': [ |
| 2715 '../ui/app_list/app_list.gyp:app_list_test_support', | 2716 '../ui/app_list/app_list.gyp:app_list_test_support', |
| 2716 ], | 2717 ], |
| 2717 }, { | 2718 }, { |
| 2718 'sources/': [ | 2719 'sources/': [ |
| 2720 ['exclude', '^browser/apps/drive/'], |
| 2719 ['exclude', '^browser/ui/app_list/'], | 2721 ['exclude', '^browser/ui/app_list/'], |
| 2720 ['exclude', '^browser/ui/views/app_list/'], | 2722 ['exclude', '^browser/ui/views/app_list/'], |
| 2721 ], | 2723 ], |
| 2722 }], | 2724 }], |
| 2723 ['use_ozone==1', { | 2725 ['use_ozone==1', { |
| 2724 'sources!': [ | 2726 'sources!': [ |
| 2725 # crbug.com/354036 | 2727 # crbug.com/354036 |
| 2726 'browser/chromeos/events/event_rewriter_unittest.cc', | 2728 'browser/chromeos/events/event_rewriter_unittest.cc', |
| 2727 | 2729 |
| 2728 # crbug.com/362698 | 2730 # crbug.com/362698 |
| (...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2843 'unit_tests.isolate', | 2845 'unit_tests.isolate', |
| 2844 ], | 2846 ], |
| 2845 'sources': [ | 2847 'sources': [ |
| 2846 'unit_tests.isolate', | 2848 'unit_tests.isolate', |
| 2847 ], | 2849 ], |
| 2848 }, | 2850 }, |
| 2849 ], | 2851 ], |
| 2850 }], | 2852 }], |
| 2851 ], # 'conditions' | 2853 ], # 'conditions' |
| 2852 } | 2854 } |
| OLD | NEW |