| 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 import("//testing/rules.gni") |
| 6 |
| 5 source_set("proximity_auth") { | 7 source_set("proximity_auth") { |
| 6 sources = [ | 8 sources = [ |
| 7 "base64url.cc", | 9 "base64url.cc", |
| 8 "base64url.h", | 10 "base64url.h", |
| 9 "bluetooth_connection.cc", | 11 "bluetooth_connection.cc", |
| 10 "bluetooth_connection.h", | 12 "bluetooth_connection.h", |
| 11 "bluetooth_connection_finder.cc", | 13 "bluetooth_connection_finder.cc", |
| 12 "bluetooth_connection_finder.h", | 14 "bluetooth_connection_finder.h", |
| 13 "bluetooth_util.cc", | 15 "bluetooth_util.cc", |
| 14 "bluetooth_util_chromeos.cc", | 16 "bluetooth_util_chromeos.cc", |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 65 # Note: This is a convenience target for ease of rapid iteration during | 67 # Note: This is a convenience target for ease of rapid iteration during |
| 66 # development. It is not executed on any try or build bots. | 68 # development. It is not executed on any try or build bots. |
| 67 test("proximity_auth_unittests") { | 69 test("proximity_auth_unittests") { |
| 68 sources = [ | 70 sources = [ |
| 69 "run_all_unittests.cc", | 71 "run_all_unittests.cc", |
| 70 ] | 72 ] |
| 71 deps = [ | 73 deps = [ |
| 72 ":unit_tests", | 74 ":unit_tests", |
| 73 ] | 75 ] |
| 74 } | 76 } |
| OLD | NEW |