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

Unified Diff: components/arc.gypi

Issue 1412863004: arc-bridge: Add the ARC Bridge Service (Closed) Base URL: https://chromium.googlesource.com/a/chromium/src.git@master
Patch Set: Addressed feedback and fixed failing tests 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/browsing_data.gypi b/components/arc.gypi
similarity index 52%
copy from components/browsing_data.gypi
copy to components/arc.gypi
index c13a84a035868ba6caa6c5d5c06a370c6099332a..dcae269ae5e026ea5a64217791aabc8b43e62f4e 100644
--- a/components/browsing_data.gypi
+++ b/components/arc.gypi
@@ -5,20 +5,24 @@
{
'targets': [
{
- 'target_name': 'browsing_data',
+ # GN version: //components/arc
+ 'target_name': 'arc',
'type': 'static_library',
- 'dependencies': [
- '../base/base.gyp:base',
- '../content/content.gyp:content_browser',
- '../net/net.gyp:net',
- ],
'include_dirs': [
'..',
],
+ 'dependencies': [
+ '../base/base.gyp:base',
+ '../chromeos/chromeos.gyp:chromeos',
+ '../ipc/ipc.gyp:ipc',
+ ],
'sources': [
- # Note: sources list duplicated in GN build.
- 'browsing_data/storage_partition_http_cache_data_remover.cc',
- 'browsing_data/storage_partition_http_cache_data_remover.h',
+ 'arc/arc_bridge_service.cc',
+ 'arc/arc_bridge_service.h',
+ 'arc/arc_pref_names.cc',
+ 'arc/arc_pref_names.h',
+ 'arc/arc_prefs.cc',
+ 'arc/arc_prefs.h',
],
},
],

Powered by Google App Engine
This is Rietveld 408576698