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

Unified Diff: components/handoff/BUILD.gn

Issue 2484703003: [ios] Adds code to support the iOS Handoff feature. (Closed)
Patch Set: Review. Created 4 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
« no previous file with comments | « no previous file | components/handoff/DEPS » ('j') | components/handoff/handoff_manager.mm » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/handoff/BUILD.gn
diff --git a/components/handoff/BUILD.gn b/components/handoff/BUILD.gn
index 1eea43c1088ca952ee950d669abda11fe4cd882e..e669fa88c11d3856ebbe8e04bb154b2d81ad7a69 100644
--- a/components/handoff/BUILD.gn
+++ b/components/handoff/BUILD.gn
@@ -5,14 +5,10 @@
source_set("handoff") {
if (is_mac || is_ios) {
sources = [
- "handoff_utility.h",
- "handoff_utility.mm",
- ]
- }
- if (is_mac) {
- sources += [
"handoff_manager.h",
"handoff_manager.mm",
+ "handoff_utility.h",
+ "handoff_utility.mm",
]
deps = [
"//base",
@@ -20,4 +16,11 @@ source_set("handoff") {
"//url",
]
}
+ if (is_ios) {
+ sources += [
+ "pref_names_ios.cc",
+ "pref_names_ios.h",
+ ]
+ deps += [ "//components/pref_registry" ]
+ }
}
« no previous file with comments | « no previous file | components/handoff/DEPS » ('j') | components/handoff/handoff_manager.mm » ('J')

Powered by Google App Engine
This is Rietveld 408576698