Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(339)

Side by Side Diff: chrome/chrome_tests_unit.gypi

Issue 1413153007: arc-app-launcher: Minimal support for ARC app launcher. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: nit comment addressed Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 1616 matching lines...) Expand 10 before | Expand all | Expand 10 after
1627 'browser/ui/app_list/test/fake_profile.cc', 1627 'browser/ui/app_list/test/fake_profile.cc',
1628 'browser/ui/app_list/test/fake_profile.h', 1628 'browser/ui/app_list/test/fake_profile.h',
1629 'browser/ui/app_list/test/fake_profile_store.cc', 1629 'browser/ui/app_list/test/fake_profile_store.cc',
1630 'browser/ui/app_list/test/fake_profile_store.h', 1630 'browser/ui/app_list/test/fake_profile_store.h',
1631 'browser/ui/app_list/test/fast_show_pickler_unittest.cc', 1631 'browser/ui/app_list/test/fast_show_pickler_unittest.cc',
1632 ], 1632 ],
1633 # ChromeOS only sources of app_list. 1633 # ChromeOS only sources of app_list.
1634 'chrome_unit_tests_app_list_chromeos_sources': [ 1634 'chrome_unit_tests_app_list_chromeos_sources': [
1635 'browser/ui/app_list/search/launcher_search/launcher_search_icon_image_loa der_unittest.cc', 1635 'browser/ui/app_list/search/launcher_search/launcher_search_icon_image_loa der_unittest.cc',
1636 ], 1636 ],
1637 # ARC only sources of app_list.
1638 'chrome_unit_tests_app_list_chromeos_arc_sources': [
1639 'browser/ui/app_list/arc_app_unittest.cc',
1640 ],
1637 # Sources for Offline pages. For now only for Android. 1641 # Sources for Offline pages. For now only for Android.
1638 'chrome_unit_tests_offline_pages_sources': [ 1642 'chrome_unit_tests_offline_pages_sources': [
1639 'browser/android/offline_pages/offline_page_mhtml_archiver_unittest.cc', 1643 'browser/android/offline_pages/offline_page_mhtml_archiver_unittest.cc',
1640 ], 1644 ],
1641 }, 1645 },
1642 'targets': [ 1646 'targets': [
1643 { 1647 {
1644 # This target contains mocks and test utilities that don't belong in 1648 # This target contains mocks and test utilities that don't belong in
1645 # production libraries but are used by more than one test executable. 1649 # production libraries but are used by more than one test executable.
1646 # 1650 #
(...skipping 1092 matching lines...) Expand 10 before | Expand all | Expand 10 after
2739 }], 2743 }],
2740 ['enable_app_list==1', { 2744 ['enable_app_list==1', {
2741 'sources': [ '<@(chrome_unit_tests_app_list_sources)' ], 2745 'sources': [ '<@(chrome_unit_tests_app_list_sources)' ],
2742 'dependencies': [ 2746 'dependencies': [
2743 '../ui/app_list/app_list.gyp:app_list_test_support', 2747 '../ui/app_list/app_list.gyp:app_list_test_support',
2744 ], 2748 ],
2745 }], 2749 }],
2746 ['enable_app_list==1 and chromeos==1', { 2750 ['enable_app_list==1 and chromeos==1', {
2747 'sources': [ '<@(chrome_unit_tests_app_list_chromeos_sources)' ], 2751 'sources': [ '<@(chrome_unit_tests_app_list_chromeos_sources)' ],
2748 }], 2752 }],
2753 ['enable_app_list==1 and chromeos==1 and enable_arc==1', {
2754 'sources': [ '<@(chrome_unit_tests_app_list_chromeos_arc_sources)' ],
2755 'dependencies': [
2756 '../components/components.gyp:fake_arc_bridge_service',
2757 ],
2758 }],
2749 ['enable_plugin_installation==0', { 2759 ['enable_plugin_installation==0', {
2750 'sources!': [ 2760 'sources!': [
2751 'browser/plugins/plugin_installer_unittest.cc', 2761 'browser/plugins/plugin_installer_unittest.cc',
2752 ], 2762 ],
2753 }], 2763 }],
2754 ['safe_browsing==1 and OS=="mac"', { 2764 ['safe_browsing==1 and OS=="mac"', {
2755 'actions': [ 2765 'actions': [
2756 { 2766 {
2757 'action_name': 'Generate safe_browsing DMG test data', 2767 'action_name': 'Generate safe_browsing DMG test data',
2758 'variables': { 2768 'variables': {
(...skipping 227 matching lines...) Expand 10 before | Expand all | Expand 10 after
2986 'dependencies': [ 2996 'dependencies': [
2987 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', 2997 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck',
2988 ], 2998 ],
2989 }], 2999 }],
2990 ], 3000 ],
2991 }, 3001 },
2992 ], 3002 ],
2993 }], 3003 }],
2994 ], # 'conditions' 3004 ], # 'conditions'
2995 } 3005 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698