| 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("//tools/grit/grit_rule.gni") | 5 import("//tools/grit/grit_rule.gni") |
| 6 | 6 |
| 7 config("bluetooth_config") { | 7 config("bluetooth_config") { |
| 8 if (is_win) { | 8 if (is_win) { |
| 9 ldflags = [ | 9 ldflags = [ |
| 10 "/DELAYLOAD:BluetoothApis.dll", | 10 "/DELAYLOAD:BluetoothApis.dll", |
| (...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 96 "bluetooth_socket_net.cc", | 96 "bluetooth_socket_net.cc", |
| 97 "bluetooth_socket_net.h", | 97 "bluetooth_socket_net.h", |
| 98 "bluetooth_socket_thread.cc", | 98 "bluetooth_socket_thread.cc", |
| 99 "bluetooth_socket_thread.h", | 99 "bluetooth_socket_thread.h", |
| 100 "bluetooth_socket_win.cc", | 100 "bluetooth_socket_win.cc", |
| 101 "bluetooth_socket_win.h", | 101 "bluetooth_socket_win.h", |
| 102 "bluetooth_task_manager_win.cc", | 102 "bluetooth_task_manager_win.cc", |
| 103 "bluetooth_task_manager_win.h", | 103 "bluetooth_task_manager_win.h", |
| 104 "bluetooth_uuid.cc", | 104 "bluetooth_uuid.cc", |
| 105 "bluetooth_uuid.h", | 105 "bluetooth_uuid.h", |
| 106 "uribeacon/uri_encoder.cc", |
| 107 "uribeacon/uri_encoder.h", |
| 106 ] | 108 ] |
| 107 | 109 |
| 108 defines = [ "DEVICE_BLUETOOTH_IMPLEMENTATION" ] | 110 defines = [ "DEVICE_BLUETOOTH_IMPLEMENTATION" ] |
| 109 | 111 |
| 110 all_dependent_configs = [ ":bluetooth_config" ] | 112 all_dependent_configs = [ ":bluetooth_config" ] |
| 111 | 113 |
| 112 deps = [ | 114 deps = [ |
| 113 ":strings", | 115 ":strings", |
| 114 "//base", | 116 "//base", |
| 115 "//net", | 117 "//net", |
| (...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 212 "test/mock_bluetooth_socket.h", | 214 "test/mock_bluetooth_socket.h", |
| 213 ] | 215 ] |
| 214 | 216 |
| 215 deps = [ | 217 deps = [ |
| 216 ":bluetooth", | 218 ":bluetooth", |
| 217 "//base", | 219 "//base", |
| 218 "//net", | 220 "//net", |
| 219 "//testing/gmock", | 221 "//testing/gmock", |
| 220 ] | 222 ] |
| 221 } | 223 } |
| OLD | NEW |