| 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/test.gni") | 5 import("//testing/test.gni") |
| 6 | 6 |
| 7 source_set("proximity_auth") { | 7 source_set("proximity_auth") { |
| 8 sources = [ | 8 sources = [ |
| 9 "base64url.cc", | |
| 10 "base64url.h", | |
| 11 "bluetooth_connection.cc", | 9 "bluetooth_connection.cc", |
| 12 "bluetooth_connection.h", | 10 "bluetooth_connection.h", |
| 13 "bluetooth_connection_finder.cc", | 11 "bluetooth_connection_finder.cc", |
| 14 "bluetooth_connection_finder.h", | 12 "bluetooth_connection_finder.h", |
| 15 "bluetooth_util.cc", | 13 "bluetooth_util.cc", |
| 16 "bluetooth_util.h", | 14 "bluetooth_util.h", |
| 17 "bluetooth_util_chromeos.cc", | 15 "bluetooth_util_chromeos.cc", |
| 18 "client.cc", | 16 "client.cc", |
| 19 "client.h", | 17 "client.h", |
| 20 "client_observer.h", | 18 "client_observer.h", |
| (...skipping 16 matching lines...) Expand all Loading... |
| 37 deps = [ | 35 deps = [ |
| 38 "//base", | 36 "//base", |
| 39 "//device/bluetooth", | 37 "//device/bluetooth", |
| 40 "//net", | 38 "//net", |
| 41 ] | 39 ] |
| 42 } | 40 } |
| 43 | 41 |
| 44 source_set("unit_tests") { | 42 source_set("unit_tests") { |
| 45 testonly = true | 43 testonly = true |
| 46 sources = [ | 44 sources = [ |
| 47 "base64url_unittest.cc", | |
| 48 "bluetooth_connection_finder_unittest.cc", | 45 "bluetooth_connection_finder_unittest.cc", |
| 49 "bluetooth_connection_unittest.cc", | 46 "bluetooth_connection_unittest.cc", |
| 50 "client_unittest.cc", | 47 "client_unittest.cc", |
| 51 "connection_unittest.cc", | 48 "connection_unittest.cc", |
| 52 "proximity_auth_system_unittest.cc", | 49 "proximity_auth_system_unittest.cc", |
| 53 "remote_status_update_unittest.cc", | 50 "remote_status_update_unittest.cc", |
| 54 "wire_message_unittest.cc", | 51 "wire_message_unittest.cc", |
| 55 ] | 52 ] |
| 56 | 53 |
| 57 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 54 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
| (...skipping 11 matching lines...) Expand all Loading... |
| 69 # Note: This is a convenience target for ease of rapid iteration during | 66 # Note: This is a convenience target for ease of rapid iteration during |
| 70 # development. It is not executed on any try or build bots. | 67 # development. It is not executed on any try or build bots. |
| 71 test("proximity_auth_unittests") { | 68 test("proximity_auth_unittests") { |
| 72 sources = [ | 69 sources = [ |
| 73 "run_all_unittests.cc", | 70 "run_all_unittests.cc", |
| 74 ] | 71 ] |
| 75 deps = [ | 72 deps = [ |
| 76 ":unit_tests", | 73 ":unit_tests", |
| 77 ] | 74 ] |
| 78 } | 75 } |
| OLD | NEW |