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 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
89 "bluetooth_task_manager_win.h", | 89 "bluetooth_task_manager_win.h", |
90 "bluetooth_uuid.cc", | 90 "bluetooth_uuid.cc", |
91 "bluetooth_uuid.h", | 91 "bluetooth_uuid.h", |
92 ] | 92 ] |
93 | 93 |
94 all_dependent_configs = [ ":bluetooth_config" ] | 94 all_dependent_configs = [ ":bluetooth_config" ] |
95 | 95 |
96 deps = [ | 96 deps = [ |
97 ":strings", | 97 ":strings", |
98 "//base", | 98 "//base", |
99 "//base/third_party/dynamic_annotations", | |
100 "//net", | 99 "//net", |
101 "//third_party/libxml", | |
102 "//ui/base", | 100 "//ui/base", |
103 "//ui/gfx", | |
104 "//ui/gfx/geometry", | |
105 ] | 101 ] |
106 | 102 |
107 if (is_chromeos) { | 103 if (is_chromeos) { |
108 deps += [ | 104 deps += [ |
109 "//dbus", | 105 "//dbus", |
110 #'../../chromeos/chromeos.gyp:chromeos', TODO(GYP) | 106 #'../../chromeos/chromeos.gyp:chromeos', TODO(GYP) |
111 ] | 107 ] |
112 } | 108 } |
113 | 109 |
114 if (is_mac) { | 110 if (is_mac) { |
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
198 "test/mock_bluetooth_gatt_service.h", | 194 "test/mock_bluetooth_gatt_service.h", |
199 "test/mock_bluetooth_socket.cc", | 195 "test/mock_bluetooth_socket.cc", |
200 "test/mock_bluetooth_socket.h", | 196 "test/mock_bluetooth_socket.h", |
201 ] | 197 ] |
202 | 198 |
203 deps = [ | 199 deps = [ |
204 ":bluetooth", | 200 ":bluetooth", |
205 "//testing/gmock", | 201 "//testing/gmock", |
206 ] | 202 ] |
207 } | 203 } |
OLD | NEW |