OLD | NEW |
(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 } |
OLD | NEW |