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 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", |
(...skipping 20 matching lines...) Expand all Loading... |
31 "wire_message_unittest.cc", | 31 "wire_message_unittest.cc", |
32 ] | 32 ] |
33 | 33 |
34 deps = [ | 34 deps = [ |
35 ":proximity_auth", | 35 ":proximity_auth", |
36 "//base/test:test_support", | 36 "//base/test:test_support", |
37 "//testing/gmock", | 37 "//testing/gmock", |
38 "//testing/gtest", | 38 "//testing/gtest", |
39 ] | 39 ] |
40 } | 40 } |
| 41 |
| 42 # Note: This is a convenience target for ease of rapid iteration during |
| 43 # development. It is not executed on any try or build bots. |
| 44 test("proximity_auth_unittests") { |
| 45 sources = [ |
| 46 "run_all_unittests.cc", |
| 47 ] |
| 48 |
| 49 deps = [ |
| 50 ":unit_tests", |
| 51 ] |
| 52 } |
OLD | NEW |