| 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 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 110 #'../../chromeos/chromeos.gyp:chromeos', TODO(GYP) | 110 #'../../chromeos/chromeos.gyp:chromeos', TODO(GYP) |
| 111 ] | 111 ] |
| 112 } | 112 } |
| 113 | 113 |
| 114 if (is_mac) { | 114 if (is_mac) { |
| 115 libs = [ "IOBluetooth.framework" ] | 115 libs = [ "IOBluetooth.framework" ] |
| 116 } | 116 } |
| 117 } | 117 } |
| 118 | 118 |
| 119 grit("strings") { | 119 grit("strings") { |
| 120 visibility = ":*" | |
| 121 source = "bluetooth_strings.grd" | 120 source = "bluetooth_strings.grd" |
| 122 outputs = [ | 121 outputs = [ |
| 123 "grit/device_bluetooth_strings.h", | 122 "grit/device_bluetooth_strings.h", |
| 124 "device_bluetooth_strings_am.pak", | 123 "device_bluetooth_strings_am.pak", |
| 125 "device_bluetooth_strings_ar.pak", | 124 "device_bluetooth_strings_ar.pak", |
| 126 "device_bluetooth_strings_bg.pak", | 125 "device_bluetooth_strings_bg.pak", |
| 127 "device_bluetooth_strings_bn.pak", | 126 "device_bluetooth_strings_bn.pak", |
| 128 "device_bluetooth_strings_ca.pak", | 127 "device_bluetooth_strings_ca.pak", |
| 129 "device_bluetooth_strings_cs.pak", | 128 "device_bluetooth_strings_cs.pak", |
| 130 "device_bluetooth_strings_da.pak", | 129 "device_bluetooth_strings_da.pak", |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 198 "test/mock_bluetooth_gatt_service.h", | 197 "test/mock_bluetooth_gatt_service.h", |
| 199 "test/mock_bluetooth_socket.cc", | 198 "test/mock_bluetooth_socket.cc", |
| 200 "test/mock_bluetooth_socket.h", | 199 "test/mock_bluetooth_socket.h", |
| 201 ] | 200 ] |
| 202 | 201 |
| 203 deps = [ | 202 deps = [ |
| 204 ":bluetooth", | 203 ":bluetooth", |
| 205 "//testing/gmock", | 204 "//testing/gmock", |
| 206 ] | 205 ] |
| 207 } | 206 } |
| OLD | NEW |