blob: 2c2224291b38669fda437372776339b10a73623c [file] [log] [blame]
# 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") {
configs += [ "//build/config/compiler:enable_arc" ]
sources = [
"device_sharing_manager.h",
"device_sharing_manager.mm",
]
deps = [
"//base",
"//components/handoff",
"//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/handoff",
"//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",
]
}