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

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

Issue 538843002: [EasyUnlock] Port Connection class to native code. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix Android test compile failures 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') | components/proximity_auth/DEPS » ('j') | 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 "connection.cc",
8 "connection.h",
9 "connection_observer.h",
7 "proximity_auth_system.cc", 10 "proximity_auth_system.cc",
8 "proximity_auth_system.h", 11 "proximity_auth_system.h",
9 "remote_device.h", 12 "remote_device.h",
13 "wire_message.cc",
14 "wire_message.h",
10 ] 15 ]
11 16
12 deps = [ 17 deps = [
13 "//base", 18 "//base",
14 ] 19 ]
15 } 20 }
16 21
17 source_set("unit_tests") { 22 source_set("unit_tests") {
18 testonly = true 23 testonly = true
19 sources = [ 24 sources = [
25 "connection_unittest.cc",
20 "proximity_auth_system_unittest.cc", 26 "proximity_auth_system_unittest.cc",
21 ] 27 ]
22 28
23 deps = [ 29 deps = [
24 ":proximity_auth", 30 ":proximity_auth",
25 "//base/test:test_support", 31 "//base/test:test_support",
32 "//testing/gmock",
26 "//testing/gtest", 33 "//testing/gtest",
27 ] 34 ]
28 } 35 }
OLDNEW
« no previous file with comments | « components/proximity_auth.gypi ('k') | components/proximity_auth/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698