| 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("ble") { | 5 source_set("ble") { |
| 6 sources = [ | 6 sources = [ |
| 7 "bluetooth_low_energy_connection_finder.cc", | 7 "bluetooth_low_energy_connection_finder.cc", |
| 8 "bluetooth_low_energy_connection_finder.h", | 8 "bluetooth_low_energy_connection_finder.h", |
| 9 "proximity_auth_ble_system.cc", | 9 "proximity_auth_ble_system.cc", |
| 10 "proximity_auth_ble_system.h", | 10 "proximity_auth_ble_system.h", |
| 11 ] | 11 ] |
| 12 | 12 |
| 13 deps = [ | 13 deps = [ |
| 14 "//base", | 14 "//base", |
| 15 "//components/proximity_auth", | 15 "//components/proximity_auth", |
| 16 "//content/public/browser", |
| 16 "//device/bluetooth", | 17 "//device/bluetooth", |
| 17 "//net", | 18 "//net", |
| 18 ] | 19 ] |
| 19 } | 20 } |
| OLD | NEW |