summaryrefslogtreecommitdiffstats
path: root/device/BUILD.gn
diff options
context:
space:
mode:
authorscheib <scheib@chromium.org>2015-10-26 22:40:12 -0700
committerCommit bot <commit-bot@chromium.org>2015-10-27 05:41:41 +0000
commitdd941ba40bbd76375e6fe43bb55aef55e9d3c282 (patch)
treee294d098862552fa1e68af9335904184fc560540 /device/BUILD.gn
parenta8391ce197da44437521b0f4968f1c547dd13451 (diff)
downloadchromium_src-dd941ba40bbd76375e6fe43bb55aef55e9d3c282.zip
chromium_src-dd941ba40bbd76375e6fe43bb55aef55e9d3c282.tar.gz
chromium_src-dd941ba40bbd76375e6fe43bb55aef55e9d3c282.tar.bz2
bluetooth: android: Implement Characteristic GetIdentifier, fix Service IDs too.
BluetoothGattCharacteristic::GetIdentifier is implemented. BluetoothGattService::GetIdentifier is fixed to produce an adapter unique value. BUG=545682, 546747 Review URL: https://codereview.chromium.org/1412963004 Cr-Commit-Position: refs/heads/master@{#356243}
Diffstat (limited to 'device/BUILD.gn')
-rw-r--r--device/BUILD.gn6
1 files changed, 5 insertions, 1 deletions
diff --git a/device/BUILD.gn b/device/BUILD.gn
index a7d91ed..bb27c5a 100644
--- a/device/BUILD.gn
+++ b/device/BUILD.gn
@@ -40,6 +40,7 @@ test("device_unittests") {
"bluetooth/bluetooth_device_unittest.cc",
"bluetooth/bluetooth_device_win_unittest.cc",
"bluetooth/bluetooth_discovery_filter_unittest.cc",
+ "bluetooth/bluetooth_gatt_characteristic_unittest.cc",
"bluetooth/bluetooth_gatt_chromeos_unittest.cc",
"bluetooth/bluetooth_gatt_service_unittest.cc",
"bluetooth/bluetooth_low_energy_win_unittest.cc",
@@ -169,7 +170,10 @@ test("device_unittests") {
# OSes older than OSX 10.10, the top level CoreBluetooth framework must be
# weakly linked.
if (mac_sdk_version == "10.10") {
- ldflags += [ "-weak_framework", "CoreBluetooth" ]
+ ldflags += [
+ "-weak_framework",
+ "CoreBluetooth",
+ ]
}
}
}