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

Side by Side Diff: components/proximity_auth/BUILD.gn

Issue 2903353003: Adding mojo calls for easy unlock service (Closed)
Patch Set: Incoporate pathset 3 comments Created 3 years, 6 months 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
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 import("//testing/test.gni") 5 import("//testing/test.gni")
6 6
7 static_library("proximity_auth") { 7 static_library("proximity_auth") {
8 sources = [ 8 sources = [
9 "bluetooth_connection.cc", 9 "bluetooth_connection.cc",
10 "bluetooth_connection.h", 10 "bluetooth_connection.h",
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
45 "switches.cc", 45 "switches.cc",
46 "switches.h", 46 "switches.h",
47 "throttled_bluetooth_connection_finder.cc", 47 "throttled_bluetooth_connection_finder.cc",
48 "throttled_bluetooth_connection_finder.h", 48 "throttled_bluetooth_connection_finder.h",
49 "unlock_manager.h", 49 "unlock_manager.h",
50 "unlock_manager_impl.cc", 50 "unlock_manager_impl.cc",
51 "unlock_manager_impl.h", 51 "unlock_manager_impl.h",
52 ] 52 ]
53 53
54 deps = [ 54 deps = [
55 "//ash/public/cpp:ash_public_cpp",
xiyuan 2017/06/05 17:30:40 Not sure whether proximity_auth owner would be hap
55 "//base", 56 "//base",
56 "//components/cryptauth", 57 "//components/cryptauth",
57 "//components/cryptauth/ble", 58 "//components/cryptauth/ble",
58 "//components/prefs", 59 "//components/prefs",
59 "//components/proximity_auth/logging", 60 "//components/proximity_auth/logging",
60 "//components/signin/core/account_id:account_id", 61 "//components/signin/core/account_id:account_id",
61 "//device/bluetooth", 62 "//device/bluetooth",
62 "//net", 63 "//net",
63 ] 64 ]
64 65
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
137 sources = [ 138 sources = [
138 "run_all_unittests.cc", 139 "run_all_unittests.cc",
139 ] 140 ]
140 deps = [ 141 deps = [
141 ":unit_tests", 142 ":unit_tests",
142 "//base", 143 "//base",
143 "//base/test:test_support", 144 "//base/test:test_support",
144 ] 145 ]
145 } 146 }
146 } 147 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698