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

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: Split off Created 5 years 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 1620 matching lines...) Expand 10 before | Expand all | Expand 10 after
1631 'browser/ui/app_list/test/fake_profile.cc', 1631 'browser/ui/app_list/test/fake_profile.cc',
1632 'browser/ui/app_list/test/fake_profile.h', 1632 'browser/ui/app_list/test/fake_profile.h',
1633 'browser/ui/app_list/test/fake_profile_store.cc', 1633 'browser/ui/app_list/test/fake_profile_store.cc',
1634 'browser/ui/app_list/test/fake_profile_store.h', 1634 'browser/ui/app_list/test/fake_profile_store.h',
1635 'browser/ui/app_list/test/fast_show_pickler_unittest.cc', 1635 'browser/ui/app_list/test/fast_show_pickler_unittest.cc',
1636 ], 1636 ],
1637 # ChromeOS only sources of app_list. 1637 # ChromeOS only sources of app_list.
1638 'chrome_unit_tests_app_list_chromeos_sources': [ 1638 'chrome_unit_tests_app_list_chromeos_sources': [
1639 'browser/ui/app_list/search/launcher_search/launcher_search_icon_image_loa der_unittest.cc', 1639 'browser/ui/app_list/search/launcher_search/launcher_search_icon_image_loa der_unittest.cc',
1640 ], 1640 ],
1641 # ARC only sources of app_list.
1642 'chrome_unit_tests_app_list_chromeos_arc_sources': [
1643 'browser/ui/app_list/arc/arc_app_unittest.cc',
1644 ],
1641 # Sources for Offline pages. For now only for Android. 1645 # Sources for Offline pages. For now only for Android.
1642 'chrome_unit_tests_offline_pages_sources': [ 1646 'chrome_unit_tests_offline_pages_sources': [
1643 'browser/android/offline_pages/offline_page_mhtml_archiver_unittest.cc', 1647 'browser/android/offline_pages/offline_page_mhtml_archiver_unittest.cc',
1644 ], 1648 ],
1645 }, 1649 },
1646 'targets': [ 1650 'targets': [
1647 { 1651 {
1648 # This target contains mocks and test utilities that don't belong in 1652 # This target contains mocks and test utilities that don't belong in
1649 # production libraries but are used by more than one test executable. 1653 # production libraries but are used by more than one test executable.
1650 # 1654 #
(...skipping 1092 matching lines...) Expand 10 before | Expand all | Expand 10 after
2743 }], 2747 }],
2744 ['enable_app_list==1', { 2748 ['enable_app_list==1', {
2745 'sources': [ '<@(chrome_unit_tests_app_list_sources)' ], 2749 'sources': [ '<@(chrome_unit_tests_app_list_sources)' ],
2746 'dependencies': [ 2750 'dependencies': [
2747 '../ui/app_list/app_list.gyp:app_list_test_support', 2751 '../ui/app_list/app_list.gyp:app_list_test_support',
2748 ], 2752 ],
2749 }], 2753 }],
2750 ['enable_app_list==1 and chromeos==1', { 2754 ['enable_app_list==1 and chromeos==1', {
2751 'sources': [ '<@(chrome_unit_tests_app_list_chromeos_sources)' ], 2755 'sources': [ '<@(chrome_unit_tests_app_list_chromeos_sources)' ],
2752 }], 2756 }],
2757 ['enable_app_list==1 and chromeos==1 and enable_arc==1', {
2758 'sources': [ '<@(chrome_unit_tests_app_list_chromeos_arc_sources)' ],
2759 'dependencies': [
2760 '../components/components.gyp:test_support',
2761 ],
2762 }],
2753 ['enable_plugin_installation==0', { 2763 ['enable_plugin_installation==0', {
2754 'sources!': [ 2764 'sources!': [
2755 'browser/plugins/plugin_installer_unittest.cc', 2765 'browser/plugins/plugin_installer_unittest.cc',
2756 ], 2766 ],
2757 }], 2767 }],
2758 ['safe_browsing==1 and OS=="mac"', { 2768 ['safe_browsing==1 and OS=="mac"', {
2759 'actions': [ 2769 'actions': [
2760 { 2770 {
2761 'action_name': 'Generate safe_browsing DMG test data', 2771 'action_name': 'Generate safe_browsing DMG test data',
2762 'variables': { 2772 'variables': {
(...skipping 227 matching lines...) Expand 10 before | Expand all | Expand 10 after
2990 'dependencies': [ 3000 'dependencies': [
2991 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', 3001 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck',
2992 ], 3002 ],
2993 }], 3003 }],
2994 ], 3004 ],
2995 }, 3005 },
2996 ], 3006 ],
2997 }], 3007 }],
2998 ], # 'conditions' 3008 ], # 'conditions'
2999 } 3009 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698