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

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

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

Powered by Google App Engine
This is Rietveld 408576698