From d7c5a3215244c5aa2165b6284bc8d19d5792af8c Mon Sep 17 00:00:00 2001 From: khmel Date: Fri, 4 Dec 2015 08:24:47 -0800 Subject: arc-app-launcher: Minimal support for ARC app launcher. This provides extension to app_list model that manages arc apps. It includes preference based service that interacts with arc bridge and supports an arc app life cycle; app list model builder for arc apps; arc list item. legacy ExtensionAppModelBuilder and new ArcAppModelBuilder are refactored in order to inherit common code. BUG=558209 TEST=Build and deploy android, chrome, chromium CLs. Apps appear in chromium app launcher. Once clicked, app is started in Android window. TEST=unit_tests with enable_arc=1 Debug/Release Review URL: https://codereview.chromium.org/1413153007 Cr-Commit-Position: refs/heads/master@{#363220} --- components/arc.gypi | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to 'components/arc.gypi') diff --git a/components/arc.gypi b/components/arc.gypi index 7ad1264..7105b7b 100644 --- a/components/arc.gypi +++ b/components/arc.gypi @@ -32,5 +32,21 @@ 'arc/common/arc_notification_types.cc', ], }, + { + # GN version: //components/arc_test_support + 'target_name': 'arc_test_support', + 'type': 'static_library', + 'include_dirs': [ + '..', + ], + 'dependencies': [ + '../base/base.gyp:base', + 'arc', + ], + 'sources': [ + 'arc/test/fake_arc_bridge_service.cc', + 'arc/test/fake_arc_bridge_service.h', + ], + }, ], } -- cgit v1.1