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

Unified Diff: ios/chrome/browser/device_sharing/BUILD.gn

Issue 2484703003: [ios] Adds code to support the iOS Handoff feature. (Closed)
Patch Set: Fixes. 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
Index: ios/chrome/browser/device_sharing/BUILD.gn
diff --git a/ios/chrome/browser/device_sharing/BUILD.gn b/ios/chrome/browser/device_sharing/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..475699f338f93bbb17d428bb0adf098418deba9b
--- /dev/null
+++ b/ios/chrome/browser/device_sharing/BUILD.gn
@@ -0,0 +1,41 @@
+# Copyright 2016 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+source_set("device_sharing") {
+ sources = [
+ "device_sharing_manager.h",
+ "device_sharing_manager.mm",
+ "handoff_manager.h",
+ "handoff_manager.mm",
+ ]
+ deps = [
+ "//base",
+ "//components/handoff",
+ "//components/pref_registry",
+ "//components/prefs",
+ "//ios/chrome/browser",
+ "//ios/chrome/browser/browser_state",
+ "//ios/chrome/browser/prefs",
+ "//net",
+ "//url",
+ ]
+}
+
+source_set("unit_tests") {
+ testonly = true
+ sources = [
+ "device_sharing_manager_unittest.mm",
+ ]
+ deps = [
+ ":device_sharing",
+ "//base",
+ "//components/sync_preferences:test_support",
+ "//ios/chrome/browser",
+ "//ios/chrome/browser/browser_state:test_support",
+ "//ios/web:test_support",
+ "//testing/gtest",
+ "//third_party/ocmock",
+ "//url",
+ ]
+}

Powered by Google App Engine
This is Rietveld 408576698