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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: chrome/chrome_tests_unit.gypi
diff --git a/chrome/chrome_tests_unit.gypi b/chrome/chrome_tests_unit.gypi
index eb28aa8dda765c0073e70a5449bc93437b93d34f..9cf8c4bb9146a8b29ba16cd2af7360476d8d1c8a 100644
--- a/chrome/chrome_tests_unit.gypi
+++ b/chrome/chrome_tests_unit.gypi
@@ -1634,6 +1634,10 @@
'chrome_unit_tests_app_list_chromeos_sources': [
'browser/ui/app_list/search/launcher_search/launcher_search_icon_image_loader_unittest.cc',
],
+ # ARC only sources of app_list.
+ 'chrome_unit_tests_app_list_chromeos_arc_sources': [
+ 'browser/ui/app_list/arc_app_unittest.cc',
+ ],
# Sources for Offline pages. For now only for Android.
'chrome_unit_tests_offline_pages_sources': [
'browser/android/offline_pages/offline_page_mhtml_archiver_unittest.cc',
@@ -2746,6 +2750,12 @@
['enable_app_list==1 and chromeos==1', {
'sources': [ '<@(chrome_unit_tests_app_list_chromeos_sources)' ],
}],
+ ['enable_app_list==1 and chromeos==1 and enable_arc==1', {
+ 'sources': [ '<@(chrome_unit_tests_app_list_chromeos_arc_sources)' ],
+ 'dependencies': [
+ '../components/components.gyp:fake_arc_bridge_service',
+ ],
+ }],
['enable_plugin_installation==0', {
'sources!': [
'browser/plugins/plugin_installer_unittest.cc',

Powered by Google App Engine
This is Rietveld 408576698