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

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

Issue 598833002: [Easy Unlock] Add missing //net dependency. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 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
« no previous file with comments | « components/proximity_auth.gypi ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 static_library("proximity_auth") { 5 static_library("proximity_auth") {
6 sources = [ 6 sources = [
7 "bluetooth_util.cc", 7 "bluetooth_util.cc",
8 "bluetooth_util_chromeos.cc", 8 "bluetooth_util_chromeos.cc",
9 "bluetooth_util.h", 9 "bluetooth_util.h",
10 "connection.cc", 10 "connection.cc",
11 "connection.h", 11 "connection.h",
12 "connection_observer.h", 12 "connection_observer.h",
13 "proximity_auth_system.cc", 13 "proximity_auth_system.cc",
14 "proximity_auth_system.h", 14 "proximity_auth_system.h",
15 "remote_device.h", 15 "remote_device.h",
16 "wire_message.cc", 16 "wire_message.cc",
17 "wire_message.h", 17 "wire_message.h",
18 ] 18 ]
19 19
20 deps = [ 20 deps = [
21 "//base", 21 "//base",
22 "//device/bluetooth", 22 "//device/bluetooth",
23 "//net",
23 ] 24 ]
24 } 25 }
25 26
26 source_set("unit_tests") { 27 source_set("unit_tests") {
27 testonly = true 28 testonly = true
28 sources = [ 29 sources = [
29 "connection_unittest.cc", 30 "connection_unittest.cc",
30 "proximity_auth_system_unittest.cc", 31 "proximity_auth_system_unittest.cc",
31 "wire_message_unittest.cc", 32 "wire_message_unittest.cc",
32 ] 33 ]
33 34
34 deps = [ 35 deps = [
35 ":proximity_auth", 36 ":proximity_auth",
36 "//base/test:test_support", 37 "//base/test:test_support",
37 "//testing/gmock", 38 "//testing/gmock",
38 "//testing/gtest", 39 "//testing/gtest",
39 ] 40 ]
40 } 41 }
OLDNEW
« no previous file with comments | « components/proximity_auth.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698