| 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", |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 58 "//base/test:test_support", | 58 "//base/test:test_support", |
| 59 "//device/bluetooth:mocks", | 59 "//device/bluetooth:mocks", |
| 60 "//testing/gmock", | 60 "//testing/gmock", |
| 61 "//testing/gtest", | 61 "//testing/gtest", |
| 62 ] | 62 ] |
| 63 } | 63 } |
| 64 | 64 |
| 65 # 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 |
| 66 # development. It is not executed on any try or build bots. | 66 # development. It is not executed on any try or build bots. |
| 67 test("proximity_auth_unittests") { | 67 test("proximity_auth_unittests") { |
| 68 sources = [ "run_all_unittests.cc" ] | 68 sources = [ |
| 69 deps = [ ":unit_tests" ] | 69 "run_all_unittests.cc", |
| 70 ] |
| 71 deps = [ |
| 72 ":unit_tests", |
| 73 ] |
| 70 } | 74 } |
| OLD | NEW |