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

Unified Diff: components/arc.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: components/arc.gypi
diff --git a/components/arc.gypi b/components/arc.gypi
index ccff1f346ce6e6cdca86b90df405fcd114eef28a..e47e364e2a53559cf423aeb6b9dbea10705a0330 100644
--- a/components/arc.gypi
+++ b/components/arc.gypi
@@ -19,11 +19,28 @@
'sources': [
'arc/arc_bridge_service.cc',
'arc/arc_bridge_service.h',
+ 'arc/arc_bridge_service_impl.cc',
+ 'arc/arc_bridge_service_impl.h',
'arc/common/arc_host_messages.h',
'arc/common/arc_instance_messages.h',
'arc/common/arc_message_generator.cc',
'arc/common/arc_message_generator.h',
],
},
+ {
+ # GN version: //components/fake_arc_bridge_service
+ 'target_name': 'fake_arc_bridge_service',
+ 'type': 'static_library',
+ 'sources': [
+ 'arc/test/fake_arc_bridge_service.cc',
+ 'arc/test/fake_arc_bridge_service.h',
+ ],
+ 'dependencies': [
+ 'arc',
+ '../chrome/chrome.gyp:browser_ui',
+ '../ui/app_list/app_list.gyp:app_list',
+ '../ui/gfx/gfx.gyp:gfx',
+ ],
+ },
],
}

Powered by Google App Engine
This is Rietveld 408576698