Ticket #52531: patch-qwe-disable-bt-560.diff
File patch-qwe-disable-bt-560.diff, 2.4 KB (added by RJVB (René Bertin), 8 years ago) |
---|
-
qtwebengine/src/3rdparty/chromium/device/BUILD.gn
old new 20 20 sources = [ 21 21 "battery/battery_status_manager_win_unittest.cc", 22 22 "battery/battery_status_service_unittest.cc", 23 "bluetooth/bluetooth_adapter_mac_unittest.mm",24 "bluetooth/bluetooth_adapter_profile_chromeos_unittest.cc",25 "bluetooth/bluetooth_adapter_unittest.cc",26 "bluetooth/bluetooth_adapter_win_unittest.cc",27 "bluetooth/bluetooth_advertisement_chromeos_unittest.cc",28 "bluetooth/bluetooth_audio_sink_chromeos_unittest.cc",29 "bluetooth/bluetooth_chromeos_unittest.cc",30 "bluetooth/bluetooth_device_unittest.cc",31 "bluetooth/bluetooth_device_win_unittest.cc",32 "bluetooth/bluetooth_discovery_filter_unittest.cc",33 "bluetooth/bluetooth_gatt_chromeos_unittest.cc",34 "bluetooth/bluetooth_low_energy_win_unittest.cc",35 "bluetooth/bluetooth_service_record_win_unittest.cc",36 "bluetooth/bluetooth_socket_chromeos_unittest.cc",37 "bluetooth/bluetooth_task_manager_win_unittest.cc",38 "bluetooth/bluetooth_uuid_unittest.cc",39 "bluetooth/test/bluetooth_test.cc",40 "bluetooth/test/bluetooth_test.h",41 "bluetooth/test/bluetooth_test_android.cc",42 "bluetooth/test/bluetooth_test_android.h",43 "bluetooth/test/test_bluetooth_adapter_observer.cc",44 "bluetooth/test/test_bluetooth_adapter_observer.h",45 23 "nfc/nfc_chromeos_unittest.cc", 46 24 "nfc/nfc_ndef_record_unittest.cc", 47 25 "test/run_all_unittests.cc", … … 51 29 "//base/test:test_support", 52 30 "//device/battery", 53 31 "//device/battery:mojo_bindings", 54 "//device/bluetooth",55 32 "//device/nfc", 56 33 "//mojo/environment:chromium", 57 34 "//net", … … 139 116 } 140 117 141 118 if (is_mac) { 142 libs = [ "IOBluetooth.framework" ]119 # libs = [ "IOBluetooth.framework" ] 143 120 144 121 # In the OSX 10.10 SDK, CoreBluetooth became a top level framework. 145 122 # Previously, it was nested in IOBluetooth. In order for Chrome to run on 146 123 # OSes older than OSX 10.10, the top level CoreBluetooth framework must be 147 124 # weakly linked. 148 if (mac_sdk_version == "10.10") {149 ldflags = [ "-weak_framework CoreBluetooth" ]150 }125 # if (mac_sdk_version == "10.10") { 126 # ldflags = [ "-weak_framework CoreBluetooth" ] 127 # } 151 128 } 152 129 } 153 130