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

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 comments 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 '../components/arc/test/fake_arc_bridge_service.cc',
1640 '../components/arc/test/fake_arc_bridge_service.h',
xiyuan 2015/11/18 17:41:15 We should add a static_libary target in components
Luis Héctor Chávez 2015/11/18 18:22:19 I'd also prefer for the FakeArcBridgeService to be
khmel1 2015/11/19 02:56:13 Thanks for advice, it is really better.
1641 'browser/ui/app_list/arc_app_unittest.cc',
1642 ],
1637 # Sources for Offline pages. For now only for Android. 1643 # Sources for Offline pages. For now only for Android.
1638 'chrome_unit_tests_offline_pages_sources': [ 1644 'chrome_unit_tests_offline_pages_sources': [
1639 'browser/android/offline_pages/offline_page_mhtml_archiver_unittest.cc', 1645 'browser/android/offline_pages/offline_page_mhtml_archiver_unittest.cc',
1640 ], 1646 ],
1641 }, 1647 },
1642 'targets': [ 1648 'targets': [
1643 { 1649 {
1644 # This target contains mocks and test utilities that don't belong in 1650 # This target contains mocks and test utilities that don't belong in
1645 # production libraries but are used by more than one test executable. 1651 # production libraries but are used by more than one test executable.
1646 # 1652 #
(...skipping 1092 matching lines...) Expand 10 before | Expand all | Expand 10 after
2739 }], 2745 }],
2740 ['enable_app_list==1', { 2746 ['enable_app_list==1', {
2741 'sources': [ '<@(chrome_unit_tests_app_list_sources)' ], 2747 'sources': [ '<@(chrome_unit_tests_app_list_sources)' ],
2742 'dependencies': [ 2748 'dependencies': [
2743 '../ui/app_list/app_list.gyp:app_list_test_support', 2749 '../ui/app_list/app_list.gyp:app_list_test_support',
2744 ], 2750 ],
2745 }], 2751 }],
2746 ['enable_app_list==1 and chromeos==1', { 2752 ['enable_app_list==1 and chromeos==1', {
2747 'sources': [ '<@(chrome_unit_tests_app_list_chromeos_sources)' ], 2753 'sources': [ '<@(chrome_unit_tests_app_list_chromeos_sources)' ],
2748 }], 2754 }],
2755 ['enable_app_list==1 and chromeos==1 and enable_arc==1', {
2756 'sources': [ '<@(chrome_unit_tests_app_list_chromeos_arc_sources)' ],
2757 }],
2749 ['enable_plugin_installation==0', { 2758 ['enable_plugin_installation==0', {
2750 'sources!': [ 2759 'sources!': [
2751 'browser/plugins/plugin_installer_unittest.cc', 2760 'browser/plugins/plugin_installer_unittest.cc',
2752 ], 2761 ],
2753 }], 2762 }],
2754 ['safe_browsing==1 and OS=="mac"', { 2763 ['safe_browsing==1 and OS=="mac"', {
2755 'actions': [ 2764 'actions': [
2756 { 2765 {
2757 'action_name': 'Generate safe_browsing DMG test data', 2766 'action_name': 'Generate safe_browsing DMG test data',
2758 'variables': { 2767 'variables': {
(...skipping 227 matching lines...) Expand 10 before | Expand all | Expand 10 after
2986 'dependencies': [ 2995 'dependencies': [
2987 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', 2996 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck',
2988 ], 2997 ],
2989 }], 2998 }],
2990 ], 2999 ],
2991 }, 3000 },
2992 ], 3001 ],
2993 }], 3002 }],
2994 ], # 'conditions' 3003 ], # 'conditions'
2995 } 3004 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698