| 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 "bluetooth_connection.cc", | 9 "bluetooth_connection.cc", |
| 10 "bluetooth_connection.h", | 10 "bluetooth_connection.h", |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 60 "proximity_auth_system_unittest.cc", | 60 "proximity_auth_system_unittest.cc", |
| 61 "remote_status_update_unittest.cc", | 61 "remote_status_update_unittest.cc", |
| 62 "throttled_bluetooth_connection_finder_unittest.cc", | 62 "throttled_bluetooth_connection_finder_unittest.cc", |
| 63 "wire_message_unittest.cc", | 63 "wire_message_unittest.cc", |
| 64 ] | 64 ] |
| 65 | 65 |
| 66 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 66 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
| 67 | 67 |
| 68 deps = [ | 68 deps = [ |
| 69 ":proximity_auth", | 69 ":proximity_auth", |
| 70 "ble:unit_tests", |
| 70 "cryptauth:unit_tests", | 71 "cryptauth:unit_tests", |
| 71 "logging:unit_tests", | 72 "logging:unit_tests", |
| 72 "//base/test:test_support", | 73 "//base/test:test_support", |
| 73 "//device/bluetooth:mocks", | 74 "//device/bluetooth:mocks", |
| 74 "//testing/gmock", | 75 "//testing/gmock", |
| 75 "//testing/gtest", | 76 "//testing/gtest", |
| 76 ] | 77 ] |
| 77 } | 78 } |
| 78 | 79 |
| 79 # Note: This is a convenience target for ease of rapid iteration during | 80 # Note: This is a convenience target for ease of rapid iteration during |
| 80 # development. It is not executed on any try or build bots. | 81 # development. It is not executed on any try or build bots. |
| 81 test("proximity_auth_unittests") { | 82 test("proximity_auth_unittests") { |
| 82 sources = [ | 83 sources = [ |
| 83 "run_all_unittests.cc", | 84 "run_all_unittests.cc", |
| 84 ] | 85 ] |
| 85 deps = [ | 86 deps = [ |
| 86 ":unit_tests", | 87 ":unit_tests", |
| 87 ] | 88 ] |
| 88 } | 89 } |
| OLD | NEW |