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 # Despite MSDN stating that Bthprops.dll contains the | 10 # Despite MSDN stating that Bthprops.dll contains the |
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
86 "bluetooth_socket_thread.cc", | 86 "bluetooth_socket_thread.cc", |
87 "bluetooth_socket_thread.h", | 87 "bluetooth_socket_thread.h", |
88 "bluetooth_socket_win.cc", | 88 "bluetooth_socket_win.cc", |
89 "bluetooth_socket_win.h", | 89 "bluetooth_socket_win.h", |
90 "bluetooth_task_manager_win.cc", | 90 "bluetooth_task_manager_win.cc", |
91 "bluetooth_task_manager_win.h", | 91 "bluetooth_task_manager_win.h", |
92 "bluetooth_uuid.cc", | 92 "bluetooth_uuid.cc", |
93 "bluetooth_uuid.h", | 93 "bluetooth_uuid.h", |
94 ] | 94 ] |
95 | 95 |
96 defines = [ | 96 defines = [ "DEVICE_BLUETOOTH_IMPLEMENTATION" ] |
97 "DEVICE_BLUETOOTH_IMPLEMENTATION", | |
98 ] | |
99 | 97 |
100 all_dependent_configs = [ ":bluetooth_config" ] | 98 all_dependent_configs = [ ":bluetooth_config" ] |
101 | 99 |
102 deps = [ | 100 deps = [ |
103 ":strings", | 101 ":strings", |
104 "//base", | 102 "//base", |
105 "//net", | 103 "//net", |
106 "//ui/base", | 104 "//ui/base", |
107 ] | 105 ] |
108 | 106 |
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
200 "test/mock_bluetooth_gatt_service.h", | 198 "test/mock_bluetooth_gatt_service.h", |
201 "test/mock_bluetooth_socket.cc", | 199 "test/mock_bluetooth_socket.cc", |
202 "test/mock_bluetooth_socket.h", | 200 "test/mock_bluetooth_socket.h", |
203 ] | 201 ] |
204 | 202 |
205 deps = [ | 203 deps = [ |
206 ":bluetooth", | 204 ":bluetooth", |
207 "//testing/gmock", | 205 "//testing/gmock", |
208 ] | 206 ] |
209 } | 207 } |
OLD | NEW |