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

Side by Side 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 unified diff | Download patch
OLDNEW
(Empty)
1 # Copyright 2016 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 source_set("device_sharing") {
6 sources = [
7 "device_sharing_manager.h",
8 "device_sharing_manager.mm",
9 "handoff_manager.h",
10 "handoff_manager.mm",
11 ]
12 deps = [
13 "//base",
14 "//components/handoff",
15 "//components/pref_registry",
16 "//components/prefs",
17 "//ios/chrome/browser",
18 "//ios/chrome/browser/browser_state",
19 "//ios/chrome/browser/prefs",
20 "//net",
21 "//url",
22 ]
23 }
24
25 source_set("unit_tests") {
26 testonly = true
27 sources = [
28 "device_sharing_manager_unittest.mm",
29 ]
30 deps = [
31 ":device_sharing",
32 "//base",
33 "//components/sync_preferences:test_support",
34 "//ios/chrome/browser",
35 "//ios/chrome/browser/browser_state:test_support",
36 "//ios/web:test_support",
37 "//testing/gtest",
38 "//third_party/ocmock",
39 "//url",
40 ]
41 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698