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 'variables': { | 5 'variables': { |
6 'chrome_unit_tests_sources': [ | 6 'chrome_unit_tests_sources': [ |
7 # histograms.xml is analyzed by AboutFlagsHistogramTest, so this | 7 # histograms.xml is analyzed by AboutFlagsHistogramTest, so this |
8 # dependency is needed to make commit bots run unit_tests on | 8 # dependency is needed to make commit bots run unit_tests on |
9 # histograms.xml changes. | 9 # histograms.xml changes. |
10 '../tools/metrics/histograms/histograms.xml', | 10 '../tools/metrics/histograms/histograms.xml', |
(...skipping 1627 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1638 'browser/ui/app_list/test/fake_profile.cc', | 1638 'browser/ui/app_list/test/fake_profile.cc', |
1639 'browser/ui/app_list/test/fake_profile.h', | 1639 'browser/ui/app_list/test/fake_profile.h', |
1640 'browser/ui/app_list/test/fake_profile_store.cc', | 1640 'browser/ui/app_list/test/fake_profile_store.cc', |
1641 'browser/ui/app_list/test/fake_profile_store.h', | 1641 'browser/ui/app_list/test/fake_profile_store.h', |
1642 'browser/ui/app_list/test/fast_show_pickler_unittest.cc', | 1642 'browser/ui/app_list/test/fast_show_pickler_unittest.cc', |
1643 ], | 1643 ], |
1644 # ChromeOS only sources of app_list. | 1644 # ChromeOS only sources of app_list. |
1645 'chrome_unit_tests_app_list_chromeos_sources': [ | 1645 'chrome_unit_tests_app_list_chromeos_sources': [ |
1646 'browser/ui/app_list/search/launcher_search/launcher_search_icon_image_loa
der_unittest.cc', | 1646 'browser/ui/app_list/search/launcher_search/launcher_search_icon_image_loa
der_unittest.cc', |
1647 ], | 1647 ], |
| 1648 # ARC only sources of app_list. |
| 1649 'chrome_unit_tests_app_list_chromeos_arc_sources': [ |
| 1650 'browser/ui/app_list/arc/arc_app_unittest.cc', |
| 1651 ], |
1648 # Sources for Offline pages. For now only for Android. | 1652 # Sources for Offline pages. For now only for Android. |
1649 'chrome_unit_tests_offline_pages_sources': [ | 1653 'chrome_unit_tests_offline_pages_sources': [ |
1650 'browser/android/offline_pages/offline_page_mhtml_archiver_unittest.cc', | 1654 'browser/android/offline_pages/offline_page_mhtml_archiver_unittest.cc', |
1651 ], | 1655 ], |
1652 }, | 1656 }, |
1653 'targets': [ | 1657 'targets': [ |
1654 { | 1658 { |
1655 # This target contains mocks and test utilities that don't belong in | 1659 # This target contains mocks and test utilities that don't belong in |
1656 # production libraries but are used by more than one test executable. | 1660 # production libraries but are used by more than one test executable. |
1657 # | 1661 # |
(...skipping 1098 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2756 }], | 2760 }], |
2757 ['enable_app_list==1', { | 2761 ['enable_app_list==1', { |
2758 'sources': [ '<@(chrome_unit_tests_app_list_sources)' ], | 2762 'sources': [ '<@(chrome_unit_tests_app_list_sources)' ], |
2759 'dependencies': [ | 2763 'dependencies': [ |
2760 '../ui/app_list/app_list.gyp:app_list_test_support', | 2764 '../ui/app_list/app_list.gyp:app_list_test_support', |
2761 ], | 2765 ], |
2762 }], | 2766 }], |
2763 ['enable_app_list==1 and chromeos==1', { | 2767 ['enable_app_list==1 and chromeos==1', { |
2764 'sources': [ '<@(chrome_unit_tests_app_list_chromeos_sources)' ], | 2768 'sources': [ '<@(chrome_unit_tests_app_list_chromeos_sources)' ], |
2765 }], | 2769 }], |
| 2770 ['enable_app_list==1 and chromeos==1', { |
| 2771 'sources': [ '<@(chrome_unit_tests_app_list_chromeos_arc_sources)' ], |
| 2772 'dependencies': [ |
| 2773 '../components/components.gyp:arc_test_support', |
| 2774 ], |
| 2775 }], |
2766 ['enable_plugin_installation==0', { | 2776 ['enable_plugin_installation==0', { |
2767 'sources!': [ | 2777 'sources!': [ |
2768 'browser/plugins/plugin_installer_unittest.cc', | 2778 'browser/plugins/plugin_installer_unittest.cc', |
2769 ], | 2779 ], |
2770 }], | 2780 }], |
2771 ['safe_browsing==1 and OS=="mac"', { | 2781 ['safe_browsing==1 and OS=="mac"', { |
2772 'actions': [ | 2782 'actions': [ |
2773 { | 2783 { |
2774 'action_name': 'Generate safe_browsing DMG test data', | 2784 'action_name': 'Generate safe_browsing DMG test data', |
2775 'variables': { | 2785 'variables': { |
(...skipping 228 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3004 'dependencies': [ | 3014 'dependencies': [ |
3005 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', | 3015 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', |
3006 ], | 3016 ], |
3007 }], | 3017 }], |
3008 ], | 3018 ], |
3009 }, | 3019 }, |
3010 ], | 3020 ], |
3011 }], | 3021 }], |
3012 ], # 'conditions' | 3022 ], # 'conditions' |
3013 } | 3023 } |
OLD | NEW |