OLD | NEW |
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 source_set("proximity_auth") { | 5 source_set("proximity_auth") { |
6 sources = [ | 6 sources = [ |
7 "base64url.cc", | 7 "base64url.cc", |
8 "base64url.h", | 8 "base64url.h", |
9 "bluetooth_connection.cc", | 9 "bluetooth_connection.cc", |
10 "bluetooth_connection.h", | 10 "bluetooth_connection.h", |
11 "bluetooth_connection_finder.cc", | 11 "bluetooth_connection_finder.cc", |
12 "bluetooth_connection_finder.h", | 12 "bluetooth_connection_finder.h", |
13 "bluetooth_util.cc", | 13 "bluetooth_util.cc", |
14 "bluetooth_util_chromeos.cc", | 14 "bluetooth_util_chromeos.cc", |
15 "bluetooth_util.h", | 15 "bluetooth_util.h", |
16 "client.cc", | 16 "client.cc", |
17 "client.h", | 17 "client.h", |
18 "client_observer.h", | 18 "client_observer.h", |
19 "connection.cc", | 19 "connection.cc", |
20 "connection.h", | 20 "connection.h", |
21 "connection_finder.h", | 21 "connection_finder.h", |
22 "connection_observer.h", | 22 "connection_observer.h", |
23 "proximity_auth_system.cc", | 23 "proximity_auth_system.cc", |
24 "proximity_auth_system.h", | 24 "proximity_auth_system.h", |
25 "remote_device.h", | 25 "remote_device.h", |
26 "remote_status_update.cc", | 26 "remote_status_update.cc", |
27 "remote_status_update.h", | 27 "remote_status_update.h", |
28 "secure_context.h", | 28 "secure_context.h", |
| 29 "switches.cc", |
| 30 "switches.h", |
29 "wire_message.cc", | 31 "wire_message.cc", |
30 "wire_message.h", | 32 "wire_message.h", |
31 ] | 33 ] |
32 | 34 |
33 deps = [ | 35 deps = [ |
34 "//base", | 36 "//base", |
35 "//device/bluetooth", | 37 "//device/bluetooth", |
36 "//net", | 38 "//net", |
37 ] | 39 ] |
38 } | 40 } |
(...skipping 20 matching lines...) Expand all Loading... |
59 "//testing/gtest", | 61 "//testing/gtest", |
60 ] | 62 ] |
61 } | 63 } |
62 | 64 |
63 # Note: This is a convenience target for ease of rapid iteration during | 65 # Note: This is a convenience target for ease of rapid iteration during |
64 # development. It is not executed on any try or build bots. | 66 # development. It is not executed on any try or build bots. |
65 test("proximity_auth_unittests") { | 67 test("proximity_auth_unittests") { |
66 sources = [ "run_all_unittests.cc" ] | 68 sources = [ "run_all_unittests.cc" ] |
67 deps = [ ":unit_tests" ] | 69 deps = [ ":unit_tests" ] |
68 } | 70 } |
OLD | NEW |